public enum ObjektType2 extends java.lang.Enum<ObjektType2>
Enum Constant and Description |
---|
Annonse |
Bolig |
Enebolig |
Kontrakt |
Leietaker |
Leilighet |
Megler |
Person |
Soknad |
Utleier |
Modifier and Type | Method and Description |
---|---|
static ObjektType2 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjektType2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjektType2 Person
public static final ObjektType2 Leietaker
public static final ObjektType2 Utleier
public static final ObjektType2 Megler
public static final ObjektType2 Bolig
public static final ObjektType2 Leilighet
public static final ObjektType2 Enebolig
public static final ObjektType2 Soknad
public static final ObjektType2 Kontrakt
public static final ObjektType2 Annonse
public static ObjektType2[] values()
for (ObjektType2 c : ObjektType2.values()) System.out.println(c);
public static ObjektType2 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