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 intKEY_TYPE_UNSPECIFIED_VALUE`KeyType` is not set.static intPGP_ASCII_ARMORED_VALUE`PGP ASCII Armored` public key.static intPKIX_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.KeyTypeforNumber(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<BuildSignature.KeyType>internalGetValueMap()static BuildSignature.KeyTypevalueOf(int value)Deprecated.static BuildSignature.KeyTypevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static BuildSignature.KeyTypevalueOf(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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin 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:
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 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
-
-