Package google.registry.model.domain.fee
Enum FeeQueryCommandExtensionItem.CommandName
- java.lang.Object
-
- java.lang.Enum<FeeQueryCommandExtensionItem.CommandName>
-
- google.registry.model.domain.fee.FeeQueryCommandExtensionItem.CommandName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FeeQueryCommandExtensionItem.CommandName>
- Enclosing class:
- FeeQueryCommandExtensionItem
public static enum FeeQueryCommandExtensionItem.CommandName extends java.lang.Enum<FeeQueryCommandExtensionItem.CommandName>
The name of a command that might have an associated fee.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FeeQueryCommandExtensionItem.CommandName
parseKnownCommand(java.lang.String string)
boolean
shouldLoadDomainForCheck()
static FeeQueryCommandExtensionItem.CommandName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FeeQueryCommandExtensionItem.CommandName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final FeeQueryCommandExtensionItem.CommandName UNKNOWN
-
CREATE
public static final FeeQueryCommandExtensionItem.CommandName CREATE
-
RENEW
public static final FeeQueryCommandExtensionItem.CommandName RENEW
-
TRANSFER
public static final FeeQueryCommandExtensionItem.CommandName TRANSFER
-
RESTORE
public static final FeeQueryCommandExtensionItem.CommandName RESTORE
-
UPDATE
public static final FeeQueryCommandExtensionItem.CommandName UPDATE
-
-
Method Detail
-
values
public static FeeQueryCommandExtensionItem.CommandName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FeeQueryCommandExtensionItem.CommandName c : FeeQueryCommandExtensionItem.CommandName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeeQueryCommandExtensionItem.CommandName valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
parseKnownCommand
public static FeeQueryCommandExtensionItem.CommandName parseKnownCommand(java.lang.String string)
-
shouldLoadDomainForCheck
public boolean shouldLoadDomainForCheck()
-
-