public static enum DateCondition.DateComparisonType extends java.lang.Enum<DateCondition.DateComparisonType>
Enum Constant and Description |
---|
DateEquals
Date equals.
|
DateGreaterThan
Date greater than.
|
DateGreaterThanEquals
Date greater than or equals.
|
DateLessThan
Date less than.
|
DateLessThanEquals
Date less than or equals.
|
DateNotEquals
Date not equals.
|
Modifier and Type | Method and Description |
---|---|
static DateCondition.DateComparisonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DateCondition.DateComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateCondition.DateComparisonType DateEquals
public static final DateCondition.DateComparisonType DateGreaterThan
public static final DateCondition.DateComparisonType DateGreaterThanEquals
public static final DateCondition.DateComparisonType DateLessThan
public static final DateCondition.DateComparisonType DateLessThanEquals
public static final DateCondition.DateComparisonType DateNotEquals
public static DateCondition.DateComparisonType[] values()
for (DateCondition.DateComparisonType c : DateCondition.DateComparisonType.values()) System.out.println(c);
public static DateCondition.DateComparisonType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2018 Amazon Web Services, Inc. All Rights Reserved.