Enum PublicName
- java.lang.Object
-
- java.lang.Enum<PublicName>
-
- com.streamlayer.sdkSettings.common.PublicName
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<PublicName>
public enum PublicName extends java.lang.Enum<PublicName> implements com.google.protobuf.Internal.EnumLite
Protobuf enumstreamlayer.sdkSettings.PublicName
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PUBLIC_NAME_DISABLEDPUBLIC_NAME_DISABLED = 2;PUBLIC_NAME_ENABLEDPUBLIC_NAME_ENABLED = 1;PUBLIC_NAME_UNSETPUBLIC_NAME_UNSET = 0;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intPUBLIC_NAME_DISABLED_VALUEPUBLIC_NAME_DISABLED = 2;static intPUBLIC_NAME_ENABLED_VALUEPUBLIC_NAME_ENABLED = 1;static intPUBLIC_NAME_UNSET_VALUEPUBLIC_NAME_UNSET = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static PublicNameforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<PublicName>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static PublicNamevalueOf(int value)Deprecated.static PublicNamevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PublicName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLIC_NAME_UNSET
public static final PublicName PUBLIC_NAME_UNSET
PUBLIC_NAME_UNSET = 0;
-
PUBLIC_NAME_ENABLED
public static final PublicName PUBLIC_NAME_ENABLED
PUBLIC_NAME_ENABLED = 1;
-
PUBLIC_NAME_DISABLED
public static final PublicName PUBLIC_NAME_DISABLED
PUBLIC_NAME_DISABLED = 2;
-
UNRECOGNIZED
public static final PublicName UNRECOGNIZED
-
-
Field Detail
-
PUBLIC_NAME_UNSET_VALUE
public static final int PUBLIC_NAME_UNSET_VALUE
PUBLIC_NAME_UNSET = 0;- See Also:
- Constant Field Values
-
PUBLIC_NAME_ENABLED_VALUE
public static final int PUBLIC_NAME_ENABLED_VALUE
PUBLIC_NAME_ENABLED = 1;- See Also:
- Constant Field Values
-
PUBLIC_NAME_DISABLED_VALUE
public static final int PUBLIC_NAME_DISABLED_VALUE
PUBLIC_NAME_DISABLED = 2;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static PublicName[] 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 (PublicName c : PublicName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PublicName 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
@Deprecated public static PublicName 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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static PublicName forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<PublicName> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-