Package org.xbill.DNS
Enum Class SetResponseType
- All Implemented Interfaces:
Serializable,Comparable<SetResponseType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA delegation enclosing the requested name was found.The Zone does not contain the requested name, or the Cache has determined that the name does not exist.The Zone contains the name, but no data of the requested type, or the Cache has determined that the name exists and has no data of the requested type.The Cache contains no information about the requested name/type -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanIf true, no RRsets can be added.private final boolean -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SetResponseTypeReturns the enum constant of this class with the specified name.static SetResponseType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
The Cache contains no information about the requested name/type -
NXDOMAIN
The Zone does not contain the requested name, or the Cache has determined that the name does not exist. -
NXRRSET
The Zone contains the name, but no data of the requested type, or the Cache has determined that the name exists and has no data of the requested type. -
DELEGATION
A delegation enclosing the requested name was found. -
CNAME
- See Also:
-
DNAME
- See Also:
-
SUCCESSFUL
-
-
Field Details
-
printRecords
private final boolean printRecords -
isSealed
private final boolean isSealedIf true, no RRsets can be added. Intended for static NX* instances.
-
-
Constructor Details
-
SetResponseType
private SetResponseType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-