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