public static enum Assignment.AssignmentType extends Enum<Assignment.AssignmentType>
Enum Constant and Description |
---|
DIRECT
assignment is direct
|
MAPPED
assignment is mapped (builtin/custom)
|
MAPPED_TWICE
2 mapping methods (builtin/custom) are applied to get the target
|
MAPPED_TYPE_CONVERTED
assignment is first mapped (builtin/custom), then the result is type converted
|
TYPE_CONVERTED
assignment is type converted
|
TYPE_CONVERTED_MAPPED
assignment is first type converted, and then mapped (builtin/custom)
|
Modifier and Type | Method and Description |
---|---|
static Assignment.AssignmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Assignment.AssignmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Assignment.AssignmentType DIRECT
public static final Assignment.AssignmentType TYPE_CONVERTED
public static final Assignment.AssignmentType MAPPED
public static final Assignment.AssignmentType MAPPED_TWICE
public static final Assignment.AssignmentType MAPPED_TYPE_CONVERTED
public static final Assignment.AssignmentType TYPE_CONVERTED_MAPPED
public static Assignment.AssignmentType[] values()
for (Assignment.AssignmentType c : Assignment.AssignmentType.values()) System.out.println(c);
public static Assignment.AssignmentType 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-2015 Gunnar Morling; All rights reserved. Released under the Apache Software License 2.0.