java.io.Serializable
, java.lang.Comparable<DBPropertyUtil.Prefix>
public static enum DBPropertyUtil.Prefix extends java.lang.Enum<DBPropertyUtil.Prefix>
Enum Constant | Description |
---|---|
BPD |
Prefix fuer BPDs.
|
META |
Prefix fuer Meta-Daten.
|
UPD |
Prefix fuer UPDs.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
value() |
Liefert den Wert des Prefix.
|
static DBPropertyUtil.Prefix |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DBPropertyUtil.Prefix[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBPropertyUtil.Prefix BPD
public static final DBPropertyUtil.Prefix UPD
public static final DBPropertyUtil.Prefix META
public static DBPropertyUtil.Prefix[] values()
for (DBPropertyUtil.Prefix c : DBPropertyUtil.Prefix.values()) System.out.println(c);
public static DBPropertyUtil.Prefix valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()