public static enum InstantRange.RangeType extends Enum<InstantRange.RangeType>
| Enum Constant and Description |
|---|
CLOSE_CLOSE |
EXPLICIT_MATCH |
OPEN_CLOSE |
| Modifier and Type | Method and Description |
|---|---|
static InstantRange.RangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstantRange.RangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstantRange.RangeType OPEN_CLOSE
public static final InstantRange.RangeType CLOSE_CLOSE
public static final InstantRange.RangeType EXPLICIT_MATCH
public static InstantRange.RangeType[] values()
for (InstantRange.RangeType c : InstantRange.RangeType.values()) System.out.println(c);
public static InstantRange.RangeType 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 © 2024 The Apache Software Foundation. All rights reserved.