public enum ObjektType extends java.lang.Enum<ObjektType>
Enum Constant and Description |
---|
ANNONSEOBJ |
BOLIGOBJ |
KONTRAKTOBJ |
PERSONOBJ |
SOKNADSOBJ |
Modifier and Type | Method and Description |
---|---|
static ObjektType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjektType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjektType PERSONOBJ
public static final ObjektType BOLIGOBJ
public static final ObjektType ANNONSEOBJ
public static final ObjektType KONTRAKTOBJ
public static final ObjektType SOKNADSOBJ
public static ObjektType[] values()
for (ObjektType c : ObjektType.values()) System.out.println(c);
public static ObjektType 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 null