public static enum IpAddressCondition.IpAddressComparisonType extends Enum<IpAddressCondition.IpAddressComparisonType>
Enum Constant and Description |
---|
IpAddress
Matches an IP address against a CIDR IP range, evaluating to true if
the IP address being tested is in the condition's specified CIDR IP
range.
|
NotIpAddress
Negated form of
IpAddress |
Modifier and Type | Method and Description |
---|---|
static IpAddressCondition.IpAddressComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IpAddressCondition.IpAddressComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IpAddressCondition.IpAddressComparisonType IpAddress
For more information about CIDR IP ranges, see http://en.wikipedia.org/wiki/CIDR_notation
public static final IpAddressCondition.IpAddressComparisonType NotIpAddress
IpAddress
public static IpAddressCondition.IpAddressComparisonType[] values()
for (IpAddressCondition.IpAddressComparisonType c : IpAddressCondition.IpAddressComparisonType.values()) System.out.println(c);
public static IpAddressCondition.IpAddressComparisonType 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.