Enum Condition.DateConstraint
- java.lang.Object
- 
- java.lang.Enum<Condition.DateConstraint>
- 
- com.inductiveautomation.snap.data.Condition.DateConstraint
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Condition.DateConstraint>
 - Enclosing class:
- Condition
 
 public static enum Condition.DateConstraint extends java.lang.Enum<Condition.DateConstraint> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Condition.DateConstraintvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Condition.DateConstraint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Secondpublic static final Condition.DateConstraint Second 
 - 
Minutepublic static final Condition.DateConstraint Minute 
 - 
Hourpublic static final Condition.DateConstraint Hour 
 - 
Daypublic static final Condition.DateConstraint Day 
 - 
Weekpublic static final Condition.DateConstraint Week 
 - 
Monthpublic static final Condition.DateConstraint Month 
 - 
Yearpublic static final Condition.DateConstraint Year 
 
- 
 - 
Method Detail- 
valuespublic static Condition.DateConstraint[] 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 (Condition.DateConstraint c : Condition.DateConstraint.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Condition.DateConstraint valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-