public enum MapperState extends Enum<MapperState>
| Enum Constant and Description |
|---|
CREATED
created but empty
|
PASSIVE
mapper expects to be populated by the client, thus possibly is not completely filled
|
POPULATED
mapper is completely populated actively
|
POPULATING
mapper is currently populating itself actively
|
| Modifier and Type | Method and Description |
|---|---|
static MapperState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapperState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapperState CREATED
public static final MapperState PASSIVE
public static final MapperState POPULATING
public static final MapperState POPULATED
public static MapperState[] values()
for (MapperState c : MapperState.values()) System.out.println(c);
public static MapperState 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 © 2006–2014 Volker Bergmann. All rights reserved.