public enum SDPFeiltype extends Enum<SDPFeiltype>
Java class for Feiltype.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Feiltype">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="KLIENT"/>
<enumeration value="SERVER"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
KLIENT
Dersom kilden til feil er KLIENT, er feilen relatert
til input og kan ikke sendes på ny.
|
SERVER
Dersom kilden til feil er SERVER, er feilen forbigående
og klienten kan forsøke å sende samme forespørsel på ny.
|
| Modifier and Type | Method and Description |
|---|---|
static SDPFeiltype |
fromValue(String v) |
String |
value() |
static SDPFeiltype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SDPFeiltype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDPFeiltype KLIENT
public static final SDPFeiltype SERVER
public static SDPFeiltype[] values()
for (SDPFeiltype c : SDPFeiltype.values()) System.out.println(c);
public static SDPFeiltype 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 nullpublic String value()
public static SDPFeiltype fromValue(String v)
Copyright © 2014 Digipost Open Source. All Rights Reserved.