public enum MappingTypes extends Enum<MappingTypes>
| Enum Constant and Description |
|---|
AUTO
É detectado automaticamente o tipo de mapeamento.
|
OBJECT
É um objeto.
|
VALUE
É um valor.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingTypes AUTO
public static final MappingTypes VALUE
public static final MappingTypes OBJECT
public static MappingTypes[] values()
for (MappingTypes c : MappingTypes.values()) System.out.println(c);
public static MappingTypes 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 © 2018 Brandao. All rights reserved.