public enum EnumRejectSource extends java.lang.Enum<EnumRejectSource>
| Enum Constant and Description |
|---|
SERVICE_PROVIDER_ACSE
byte value representing source as service provider ACSE
|
SERVICE_PROVIDER_PRESENTATION
byte value representing source as service provider presentation
|
SERVICE_USER
byte value representing source as service user
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumRejectSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumRejectSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRejectSource SERVICE_USER
public static final EnumRejectSource SERVICE_PROVIDER_ACSE
public static final EnumRejectSource SERVICE_PROVIDER_PRESENTATION
public static EnumRejectSource[] values()
for (EnumRejectSource c : EnumRejectSource.values()) System.out.println(c);
public static EnumRejectSource 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 byte getValue()