Enum Indicator.ProcessSignature.SignatureCase
- java.lang.Object
-
- java.lang.Enum<Indicator.ProcessSignature.SignatureCase>
-
- com.google.cloud.securitycenter.v1.Indicator.ProcessSignature.SignatureCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Indicator.ProcessSignature.SignatureCase>
- Enclosing class:
- Indicator.ProcessSignature
public static enum Indicator.ProcessSignature.SignatureCase extends Enum<Indicator.ProcessSignature.SignatureCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MEMORY_HASH_SIGNATURE
SIGNATURE_NOT_SET
YARA_RULE_SIGNATURE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Indicator.ProcessSignature.SignatureCase
forNumber(int value)
int
getNumber()
static Indicator.ProcessSignature.SignatureCase
valueOf(int value)
Deprecated.static Indicator.ProcessSignature.SignatureCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Indicator.ProcessSignature.SignatureCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMORY_HASH_SIGNATURE
public static final Indicator.ProcessSignature.SignatureCase MEMORY_HASH_SIGNATURE
-
YARA_RULE_SIGNATURE
public static final Indicator.ProcessSignature.SignatureCase YARA_RULE_SIGNATURE
-
SIGNATURE_NOT_SET
public static final Indicator.ProcessSignature.SignatureCase SIGNATURE_NOT_SET
-
-
Method Detail
-
values
public static Indicator.ProcessSignature.SignatureCase[] 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 (Indicator.ProcessSignature.SignatureCase c : Indicator.ProcessSignature.SignatureCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Indicator.ProcessSignature.SignatureCase 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
-
valueOf
@Deprecated public static Indicator.ProcessSignature.SignatureCase 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 Indicator.ProcessSignature.SignatureCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-