public static enum ArnCondition.ArnComparisonType extends Enum<ArnCondition.ArnComparisonType>
| Enum Constant and Description |
|---|
ArnEquals
Exact matching
|
ArnLike
Loose case-insensitive matching of the ARN.
|
ArnNotEquals
Negated form of
ArnEquals |
ArnNotLike
Negated form of
ArnLike |
| Modifier and Type | Method and Description |
|---|---|
static ArnCondition.ArnComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArnCondition.ArnComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArnCondition.ArnComparisonType ArnEquals
public static final ArnCondition.ArnComparisonType ArnLike
public static final ArnCondition.ArnComparisonType ArnNotEquals
ArnEqualspublic static final ArnCondition.ArnComparisonType ArnNotLike
ArnLikepublic static ArnCondition.ArnComparisonType[] values()
for (ArnCondition.ArnComparisonType c : ArnCondition.ArnComparisonType.values()) System.out.println(c);
public static ArnCondition.ArnComparisonType 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 nullCopyright © 2013 Amazon Web Services, Inc. All Rights Reserved.