public enum TransformOperationType extends Enum<TransformOperationType>
| Enum Constant and Description |
|---|
DATATYPE_TRANSFORMATION |
DOMAIN_PROPERTY_TRANSFORMATION |
MEASUREMENT_UNIT_TRANSFORMATION |
RUNTIME_NAME_TRANSFORMATION |
| Modifier and Type | Method and Description |
|---|---|
static TransformOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransformOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformOperationType MEASUREMENT_UNIT_TRANSFORMATION
public static final TransformOperationType DATATYPE_TRANSFORMATION
public static final TransformOperationType RUNTIME_NAME_TRANSFORMATION
public static final TransformOperationType DOMAIN_PROPERTY_TRANSFORMATION
public static TransformOperationType[] values()
for (TransformOperationType c : TransformOperationType.values()) System.out.println(c);
public static TransformOperationType 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 © 2019. All rights reserved.