Package io.grafeas.v1beta1.build
Enum BuildSignature.KeyType
- java.lang.Object
-
- java.lang.Enum<BuildSignature.KeyType>
-
- io.grafeas.v1beta1.build.BuildSignature.KeyType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<BuildSignature.KeyType>
- Enclosing class:
- BuildSignature
public static enum BuildSignature.KeyType extends Enum<BuildSignature.KeyType> implements com.google.protobuf.ProtocolMessageEnum
Public key formats.
Protobuf enumgrafeas.v1beta1.build.BuildSignature.KeyType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEY_TYPE_UNSPECIFIED
`KeyType` is not set.PGP_ASCII_ARMORED
`PGP ASCII Armored` public key.PKIX_PEM
`PKIX PEM` public key.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
KEY_TYPE_UNSPECIFIED_VALUE
`KeyType` is not set.static int
PGP_ASCII_ARMORED_VALUE
`PGP ASCII Armored` public key.static int
PKIX_PEM_VALUE
`PKIX PEM` public key.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BuildSignature.KeyType
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<BuildSignature.KeyType>
internalGetValueMap()
static BuildSignature.KeyType
valueOf(int value)
Deprecated.static BuildSignature.KeyType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static BuildSignature.KeyType
valueOf(String name)
Returns the enum constant of this type with the specified name.static BuildSignature.KeyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEY_TYPE_UNSPECIFIED
public static final BuildSignature.KeyType KEY_TYPE_UNSPECIFIED
`KeyType` is not set.
KEY_TYPE_UNSPECIFIED = 0;
-
PGP_ASCII_ARMORED
public static final BuildSignature.KeyType PGP_ASCII_ARMORED
`PGP ASCII Armored` public key.
PGP_ASCII_ARMORED = 1;
-
PKIX_PEM
public static final BuildSignature.KeyType PKIX_PEM
`PKIX PEM` public key.
PKIX_PEM = 2;
-
UNRECOGNIZED
public static final BuildSignature.KeyType UNRECOGNIZED
-
-
Field Detail
-
KEY_TYPE_UNSPECIFIED_VALUE
public static final int KEY_TYPE_UNSPECIFIED_VALUE
`KeyType` is not set.
KEY_TYPE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
PGP_ASCII_ARMORED_VALUE
public static final int PGP_ASCII_ARMORED_VALUE
`PGP ASCII Armored` public key.
PGP_ASCII_ARMORED = 1;
- See Also:
- Constant Field Values
-
PKIX_PEM_VALUE
public static final int PKIX_PEM_VALUE
`PKIX PEM` public key.
PKIX_PEM = 2;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static BuildSignature.KeyType[] 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 (BuildSignature.KeyType c : BuildSignature.KeyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuildSignature.KeyType 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 BuildSignature.KeyType 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 BuildSignature.KeyType 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<BuildSignature.KeyType> 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 BuildSignature.KeyType 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
-
-