|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Codec.Characteristic>
org.jnetstream.protocol.codec.Codec.Characteristic
public static enum Codec.Characteristic
Describe certain characteristics of a codec.
| Enum Constant Summary | |
|---|---|
CrossCompiled
Codec that was generated from an NPL definition. |
|
Interpreted
Codec has been implemented as an intepreter of the protocol definition. |
|
Java
A custom codec has been implemented in pure java. |
|
Native
Codec has been implemented natively in "machine code". |
|
| Method Summary | |
|---|---|
static Codec.Characteristic |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Codec.Characteristic[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Codec.Characteristic Native
public static final Codec.Characteristic Java
public static final Codec.Characteristic CrossCompiled
public static final Codec.Characteristic Interpreted
| Method Detail |
|---|
public static final Codec.Characteristic[] values()
for(Codec.Characteristic c : Codec.Characteristic.values())
System.out.println(c);
public static Codec.Characteristic 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 name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||