@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum CriterionKey extends Enum<CriterionKey>
| Enum Constant and Description | 
|---|
| ACCOUNT_ID | 
| EC2_INSTANCE_ARN | 
| GUARDDUTY_FINDING_ID | 
| SCAN_ID | 
| SCAN_START_TIME | 
| SCAN_STATUS | 
| SCAN_TYPE | 
| Modifier and Type | Method and Description | 
|---|---|
| static CriterionKey | fromValue(String value)Use this in place of valueOf. | 
| String | toString() | 
| static CriterionKey | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CriterionKey[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CriterionKey EC2_INSTANCE_ARN
public static final CriterionKey SCAN_ID
public static final CriterionKey ACCOUNT_ID
public static final CriterionKey GUARDDUTY_FINDING_ID
public static final CriterionKey SCAN_START_TIME
public static final CriterionKey SCAN_STATUS
public static final CriterionKey SCAN_TYPE
public static CriterionKey[] values()
for (CriterionKey c : CriterionKey.values()) System.out.println(c);
public static CriterionKey valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<CriterionKey>public static CriterionKey fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.