public static enum Attribute.MappingType extends Enum<Attribute.MappingType>
| Enum Constant and Description |
|---|
BASIC
Basic attribute mapping type.
|
CORRELATED
Correlated attribute mapping type.
|
PARAMETER
Parameter attribute mapping type.
|
SUBQUERY
Subquery attribute mapping type.
|
| Modifier and Type | Method and Description |
|---|---|
static Attribute.MappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attribute.MappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attribute.MappingType BASIC
public static final Attribute.MappingType SUBQUERY
public static final Attribute.MappingType PARAMETER
public static final Attribute.MappingType CORRELATED
public static Attribute.MappingType[] values()
for (Attribute.MappingType c : Attribute.MappingType.values()) System.out.println(c);
public static Attribute.MappingType 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 © 2014–2018 Blazebit. All rights reserved.