Enum Constant and Description |
---|
AUTUMN
Autumn
|
SPRING
Spring
|
SUMMER
Summer
|
WINTER
Winter
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
static int |
getEnumBitWidth() |
static Season |
getEnumForValue(int i) |
int |
getMarshalledSize() |
int |
getValue() |
void |
marshal(java.nio.ByteBuffer buff) |
void |
marshal(java.io.DataOutputStream dos) |
static Season |
unmarshalEnum(java.nio.ByteBuffer buff) |
static Season |
unmarshalEnum(java.io.DataInputStream dis) |
static Season |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Season[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Season SUMMER
public static final Season WINTER
public static final Season SPRING
public static final Season AUTUMN
public static Season[] values()
for (Season c : Season.values()) System.out.println(c);
public static Season 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 int getValue()
public java.lang.String getDescription()
public static int getEnumBitWidth()
public static Season getEnumForValue(int i)
public void marshal(java.io.DataOutputStream dos) throws java.io.IOException
java.io.IOException
public void marshal(java.nio.ByteBuffer buff) throws java.lang.Exception
java.lang.Exception
public static Season unmarshalEnum(java.io.DataInputStream dis) throws java.lang.Exception
java.lang.Exception
public static Season unmarshalEnum(java.nio.ByteBuffer buff) throws java.lang.Exception
java.lang.Exception
public int getMarshalledSize()