public enum TimeIntervalStatusType extends Enum<TimeIntervalStatusType>
Java class for TimeIntervalStatusType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TimeIntervalStatusType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="before"/>
<enumeration value="in"/>
<enumeration value="after"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AFTER
Current time and date is after the interval.
|
BEFORE
Current time and date is before the interval.
|
IN
Current time and date is in the interval.
|
| Modifier and Type | Method and Description |
|---|---|
static TimeIntervalStatusType |
fromValue(String v) |
String |
value() |
static TimeIntervalStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeIntervalStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeIntervalStatusType BEFORE
public static final TimeIntervalStatusType IN
public static final TimeIntervalStatusType AFTER
public static TimeIntervalStatusType[] values()
for (TimeIntervalStatusType c : TimeIntervalStatusType.values()) System.out.println(c);
public static TimeIntervalStatusType 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 value()
public static TimeIntervalStatusType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.