public enum ScheduleExpressionType extends Enum<ScheduleExpressionType>
ScheduleExpression| Enum Constant and Description |
|---|
INCREMENT
Represents a value represented as an increment.
|
LIST
Represents a value represented as a list.
|
RANGE
Represents a value represented as a range.
|
SINGLE_VALUE
Represents a single value type.
|
WILDCARD
Represents a wildcard "*" value.
|
| Modifier and Type | Method and Description |
|---|---|
static ScheduleExpressionType |
getType(String value) |
static ScheduleExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduleExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduleExpressionType SINGLE_VALUE
For example:
public static final ScheduleExpressionType WILDCARD
For example:
public static final ScheduleExpressionType LIST
For example:
public static final ScheduleExpressionType RANGE
For example:
public static final ScheduleExpressionType INCREMENT
For example:
public static ScheduleExpressionType[] values()
for (ScheduleExpressionType c : ScheduleExpressionType.values()) System.out.println(c);
public static ScheduleExpressionType 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 static ScheduleExpressionType getType(String value)
Copyright © 2022 JBoss by Red Hat. All rights reserved.