public static enum Specification.SpecificationType extends Enum<Specification.SpecificationType>
| Enum Constant and Description |
|---|
ACTION |
QUERY |
RULE |
RULESCRIPT |
WEB |
| Modifier and Type | Method and Description |
|---|---|
static Specification.SpecificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Specification.SpecificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Specification.SpecificationType RULE
public static final Specification.SpecificationType RULESCRIPT
public static final Specification.SpecificationType ACTION
public static final Specification.SpecificationType QUERY
public static final Specification.SpecificationType WEB
public static Specification.SpecificationType[] values()
for (Specification.SpecificationType c : Specification.SpecificationType.values()) System.out.println(c);
public static Specification.SpecificationType 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 © 2012–2020. All rights reserved.