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