Package org.yamcs.xtce
Enum CheckWindow.TimeWindowIsRelativeToType
- java.lang.Object
-
- java.lang.Enum<CheckWindow.TimeWindowIsRelativeToType>
-
- org.yamcs.xtce.CheckWindow.TimeWindowIsRelativeToType
-
- All Implemented Interfaces:
Serializable,Comparable<CheckWindow.TimeWindowIsRelativeToType>
- Enclosing class:
- CheckWindow
public static enum CheckWindow.TimeWindowIsRelativeToType extends Enum<CheckWindow.TimeWindowIsRelativeToType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CommandReleaseLastVerifier
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CheckWindow.TimeWindowIsRelativeToTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CheckWindow.TimeWindowIsRelativeToType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CommandRelease
public static final CheckWindow.TimeWindowIsRelativeToType CommandRelease
-
LastVerifier
public static final CheckWindow.TimeWindowIsRelativeToType LastVerifier
-
-
Method Detail
-
values
public static CheckWindow.TimeWindowIsRelativeToType[] 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 (CheckWindow.TimeWindowIsRelativeToType c : CheckWindow.TimeWindowIsRelativeToType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckWindow.TimeWindowIsRelativeToType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-