Enum Trust.State
- java.lang.Object
-
- java.lang.Enum<Trust.State>
-
- com.google.cloud.managedidentities.v1.Trust.State
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<Trust.State>
- Enclosing class:
- Trust
public static enum Trust.State extends Enum<Trust.State> implements com.google.protobuf.ProtocolMessageEnum
Represents the different states of a domain trust.
Protobuf enumgoogle.cloud.managedidentities.v1.Trust.State
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTEDThe domain trust is connected.CREATINGThe domain trust is being created.DELETINGThe domain trust is being deleted.DISCONNECTEDThe domain trust is disconnected.STATE_UNSPECIFIEDNot set.UNRECOGNIZEDUPDATINGThe domain trust is being updated.
-
Field Summary
Fields Modifier and Type Field Description static intCONNECTED_VALUEThe domain trust is connected.static intCREATING_VALUEThe domain trust is being created.static intDELETING_VALUEThe domain trust is being deleted.static intDISCONNECTED_VALUEThe domain trust is disconnected.static intSTATE_UNSPECIFIED_VALUENot set.static intUPDATING_VALUEThe domain trust is being updated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Trust.StateforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<Trust.State>internalGetValueMap()static Trust.StatevalueOf(int value)Deprecated.static Trust.StatevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static Trust.StatevalueOf(String name)Returns the enum constant of this type with the specified name.static Trust.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 Trust.State STATE_UNSPECIFIED
Not set.
STATE_UNSPECIFIED = 0;
-
CREATING
public static final Trust.State CREATING
The domain trust is being created.
CREATING = 1;
-
UPDATING
public static final Trust.State UPDATING
The domain trust is being updated.
UPDATING = 2;
-
DELETING
public static final Trust.State DELETING
The domain trust is being deleted.
DELETING = 3;
-
CONNECTED
public static final Trust.State CONNECTED
The domain trust is connected.
CONNECTED = 4;
-
DISCONNECTED
public static final Trust.State DISCONNECTED
The domain trust is disconnected.
DISCONNECTED = 5;
-
UNRECOGNIZED
public static final Trust.State UNRECOGNIZED
-
-
Field Detail
-
STATE_UNSPECIFIED_VALUE
public static final int STATE_UNSPECIFIED_VALUE
Not set.
STATE_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
CREATING_VALUE
public static final int CREATING_VALUE
The domain trust is being created.
CREATING = 1;- See Also:
- Constant Field Values
-
UPDATING_VALUE
public static final int UPDATING_VALUE
The domain trust is being updated.
UPDATING = 2;- See Also:
- Constant Field Values
-
DELETING_VALUE
public static final int DELETING_VALUE
The domain trust is being deleted.
DELETING = 3;- See Also:
- Constant Field Values
-
CONNECTED_VALUE
public static final int CONNECTED_VALUE
The domain trust is connected.
CONNECTED = 4;- See Also:
- Constant Field Values
-
DISCONNECTED_VALUE
public static final int DISCONNECTED_VALUE
The domain trust is disconnected.
DISCONNECTED = 5;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Trust.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 (Trust.State c : Trust.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 Trust.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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static Trust.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 Trust.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<Trust.State> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static Trust.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
-
-