Package com.google.cloud.domains.v1
Enum Registration.State
- java.lang.Object
-
- java.lang.Enum<Registration.State>
-
- com.google.cloud.domains.v1.Registration.State
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<Registration.State>
- Enclosing class:
- Registration
public static enum Registration.State extends Enum<Registration.State> implements com.google.protobuf.ProtocolMessageEnum
Possible states of a `Registration`.
Protobuf enumgoogle.cloud.domains.v1.Registration.State
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
The domain is registered and operational.EXPORTED
The domain is no longer managed with Cloud Domains.REGISTRATION_FAILED
The domain registration failed.REGISTRATION_PENDING
The domain is being registered.STATE_UNSPECIFIED
The state is undefined.SUSPENDED
The domain is suspended and inoperative.TRANSFER_FAILED
The attempt to transfer the domain from another registrar to Cloud Domains failed.TRANSFER_PENDING
The domain is being transferred from another registrar to Cloud Domains.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
ACTIVE_VALUE
The domain is registered and operational.static int
EXPORTED_VALUE
The domain is no longer managed with Cloud Domains.static int
REGISTRATION_FAILED_VALUE
The domain registration failed.static int
REGISTRATION_PENDING_VALUE
The domain is being registered.static int
STATE_UNSPECIFIED_VALUE
The state is undefined.static int
SUSPENDED_VALUE
The domain is suspended and inoperative.static int
TRANSFER_FAILED_VALUE
The attempt to transfer the domain from another registrar to Cloud Domains failed.static int
TRANSFER_PENDING_VALUE
The domain is being transferred from another registrar to Cloud Domains.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Registration.State
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<Registration.State>
internalGetValueMap()
static Registration.State
valueOf(int value)
Deprecated.static Registration.State
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static Registration.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static Registration.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATE_UNSPECIFIED
public static final Registration.State STATE_UNSPECIFIED
The state is undefined.
STATE_UNSPECIFIED = 0;
-
REGISTRATION_PENDING
public static final Registration.State REGISTRATION_PENDING
The domain is being registered.
REGISTRATION_PENDING = 1;
-
REGISTRATION_FAILED
public static final Registration.State REGISTRATION_FAILED
The domain registration failed. You can delete resources in this state to allow registration to be retried.
REGISTRATION_FAILED = 2;
-
TRANSFER_PENDING
public static final Registration.State TRANSFER_PENDING
The domain is being transferred from another registrar to Cloud Domains.
TRANSFER_PENDING = 3;
-
TRANSFER_FAILED
public static final Registration.State TRANSFER_FAILED
The attempt to transfer the domain from another registrar to Cloud Domains failed. You can delete resources in this state and retry the transfer.
TRANSFER_FAILED = 4;
-
ACTIVE
public static final Registration.State ACTIVE
The domain is registered and operational. The domain renews automatically as long as it remains in this state.
ACTIVE = 6;
-
SUSPENDED
public static final Registration.State SUSPENDED
The domain is suspended and inoperative. For more details, see the `issues` field.
SUSPENDED = 7;
-
EXPORTED
public static final Registration.State EXPORTED
The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains.
EXPORTED = 8;
-
UNRECOGNIZED
public static final Registration.State UNRECOGNIZED
-
-
Field Detail
-
STATE_UNSPECIFIED_VALUE
public static final int STATE_UNSPECIFIED_VALUE
The state is undefined.
STATE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
REGISTRATION_PENDING_VALUE
public static final int REGISTRATION_PENDING_VALUE
The domain is being registered.
REGISTRATION_PENDING = 1;
- See Also:
- Constant Field Values
-
REGISTRATION_FAILED_VALUE
public static final int REGISTRATION_FAILED_VALUE
The domain registration failed. You can delete resources in this state to allow registration to be retried.
REGISTRATION_FAILED = 2;
- See Also:
- Constant Field Values
-
TRANSFER_PENDING_VALUE
public static final int TRANSFER_PENDING_VALUE
The domain is being transferred from another registrar to Cloud Domains.
TRANSFER_PENDING = 3;
- See Also:
- Constant Field Values
-
TRANSFER_FAILED_VALUE
public static final int TRANSFER_FAILED_VALUE
The attempt to transfer the domain from another registrar to Cloud Domains failed. You can delete resources in this state and retry the transfer.
TRANSFER_FAILED = 4;
- See Also:
- Constant Field Values
-
ACTIVE_VALUE
public static final int ACTIVE_VALUE
The domain is registered and operational. The domain renews automatically as long as it remains in this state.
ACTIVE = 6;
- See Also:
- Constant Field Values
-
SUSPENDED_VALUE
public static final int SUSPENDED_VALUE
The domain is suspended and inoperative. For more details, see the `issues` field.
SUSPENDED = 7;
- See Also:
- Constant Field Values
-
EXPORTED_VALUE
public static final int EXPORTED_VALUE
The domain is no longer managed with Cloud Domains. It may have been transferred to another registrar or exported for management in [Google Domains](https://domains.google/). You can no longer update it with this API, and information shown about it may be stale. Domains in this state are not automatically renewed by Cloud Domains.
EXPORTED = 8;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Registration.State[] 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 (Registration.State c : Registration.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Registration.State valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static Registration.State valueOf(int value)
Deprecated.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:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static Registration.State forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<Registration.State> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static Registration.State valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-