public enum SpecificationType extends Enum<SpecificationType>
Enum Constant and Description |
---|
COMPARE |
CONVERT |
EMPTY |
EXSUITE |
EXTRACT |
LOAD |
Modifier and Type | Method and Description |
---|---|
String |
getDisplayName() |
String |
getValue() |
static SpecificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecificationType EMPTY
public static final SpecificationType COMPARE
public static final SpecificationType CONVERT
public static final SpecificationType EXTRACT
public static final SpecificationType LOAD
public static final SpecificationType EXSUITE
public static SpecificationType[] values()
for (SpecificationType c : SpecificationType.values()) System.out.println(c);
public static 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 nullpublic String getDisplayName()
public String getValue()
Copyright © 2016–2023. All rights reserved.