Package | Description |
---|---|
propel.core.userTypes | |
propel.core.utils |
Modifier and Type | Field and Description |
---|---|
static UnsignedByte |
UnsignedByte.MAX_VALUE |
static UnsignedByte |
UnsignedByte.MIN_VALUE |
Modifier and Type | Method and Description |
---|---|
int |
UnsignedByte.compareTo(UnsignedByte other) |
Constructor and Description |
---|
UnsignedByte(UnsignedByte other)
Initializes with another signed byte
|
Modifier and Type | Method and Description |
---|---|
static UnsignedByte |
ConversionUtils.fromBinaryToUInt8(java.lang.String binary)
Converts a binary back to an unsigned byte.
|
static UnsignedByte |
ConversionUtils.fromHexToUInt8(java.lang.String hex)
Converts a hex back to a ushort Hex representations can be endian dependent.
|
static UnsignedByte |
ConversionUtils.fromStringToUInt8(java.lang.String value)
Converts a string back to an unsigned byte
|
static UnsignedByte |
StringUtils.parseUInt8(java.lang.String value)
Parses an sbyte from a string
|
static UnsignedByte |
StringUtils.parseUInt8(java.lang.String value,
UnsignedByte minValue,
UnsignedByte maxValue)
Parses an sbyte from a string
|
Modifier and Type | Method and Description |
---|---|
static TryResult<UnsignedByte> |
StringUtils.tryParseUInt8(java.lang.String value)
Tries to parse the given value.
|
static TryResult<UnsignedByte> |
StringUtils.tryParseUInt8(java.lang.String value,
UnsignedByte minValue,
UnsignedByte maxValue)
Tries to parse the given value.
|
Modifier and Type | Method and Description |
---|---|
static UnsignedByte |
StringUtils.parseUInt8(java.lang.String value,
UnsignedByte minValue,
UnsignedByte maxValue)
Parses an sbyte from a string
|
static java.lang.String |
ConversionUtils.toBinary(UnsignedByte num)
Converts a number to binary, e.g.
|
static java.lang.String |
ConversionUtils.toBinary(UnsignedByte num,
boolean padLeft)
Converts a number to binary, e.g.
|
static java.lang.String |
ConversionUtils.toHex(UnsignedByte num)
Converts a number to hex, e.g.
|
static java.lang.String |
ConversionUtils.toHex(UnsignedByte num,
boolean padLeft)
Converts a number to hex, e.g.
|
static TryResult<UnsignedByte> |
StringUtils.tryParseUInt8(java.lang.String value,
UnsignedByte minValue,
UnsignedByte maxValue)
Tries to parse the given value.
|