public static enum ShpFiles.State extends Enum<ShpFiles.State>
Enum Constant and Description |
---|
GOOD
Indicates that the url and lock were successfully obtained
|
LOCKED
Indicates that the files are locked by another thread.
|
NOT_EXIST
Indicates the files does not exist for this shapefile
|
Modifier and Type | Method and Description |
---|---|
static ShpFiles.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShpFiles.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShpFiles.State NOT_EXIST
public static final ShpFiles.State LOCKED
public static final ShpFiles.State GOOD
public static ShpFiles.State[] values()
for (ShpFiles.State c : ShpFiles.State.values()) System.out.println(c);
public static ShpFiles.State 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 © 1996–2019 Geotools. All rights reserved.