public abstract class DataCoding extends Object
Modifier and Type | Field and Description |
---|---|
protected byte |
value |
Constructor and Description |
---|
DataCoding()
Default constructor.
|
DataCoding(byte value)
Construct with specified value.
|
DataCoding(int value)
Construct with specified value.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
int |
hashCode() |
static DataCoding |
newInstance(byte value)
Create new instance of data coding with specified value.
|
static DataCoding |
newInstance(int value)
Create new instance of data coding with specified value.
|
byte |
value()
Get the value of data coding.
|
public DataCoding()
public DataCoding(int value)
value
- is the data coding value.public DataCoding(byte value)
value
- is the data coding value.public static final DataCoding newInstance(int value)
value
- is the value.public static final DataCoding newInstance(byte value)
value
- is the value.public byte value()