Package com.google.cloud.dns
Class ChangeRequestInfo.Status
- java.lang.Object
-
- com.google.cloud.StringEnumValue
-
- com.google.cloud.dns.ChangeRequestInfo.Status
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ChangeRequestInfo
public static final class ChangeRequestInfo.Status extends com.google.cloud.StringEnumValueThis enumerates the possible states of a change request.- See Also:
- Google Cloud DNS documentation, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ChangeRequestInfo.StatusDONEstatic ChangeRequestInfo.StatusPENDING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChangeRequestInfo.StatusvalueOf(String constant)Get the Status for the given String constant, and allow unrecognized values.static ChangeRequestInfo.StatusvalueOfStrict(String constant)Get the Status for the given String constant, and throw an exception if the constant is not recognized.static ChangeRequestInfo.Status[]values()Return the known values for Status.
-
-
-
Field Detail
-
PENDING
public static final ChangeRequestInfo.Status PENDING
-
DONE
public static final ChangeRequestInfo.Status DONE
-
-
Method Detail
-
valueOfStrict
public static ChangeRequestInfo.Status valueOfStrict(String constant)
Get the Status for the given String constant, and throw an exception if the constant is not recognized.
-
valueOf
public static ChangeRequestInfo.Status valueOf(String constant)
Get the Status for the given String constant, and allow unrecognized values.
-
values
public static ChangeRequestInfo.Status[] values()
Return the known values for Status.
-
-