Package | Description |
---|---|
propel.core.configuration | |
propel.core.userTypes | |
propel.core.utils | |
propel.core.validation.propertyMetadata |
Modifier and Type | Method and Description |
---|---|
static UnsignedLong |
ConfigurableParameters.getUInt64(KeyValuePair<java.lang.String,UnsignedLong> kvp)
Gets the value of a UInt64 key if it exists, otherwise returns the specified default value.
|
Modifier and Type | Method and Description |
---|---|
static UnsignedLong |
ConfigurableParameters.getUInt64(KeyValuePair<java.lang.String,UnsignedLong> kvp)
Gets the value of a UInt64 key if it exists, otherwise returns the specified default value.
|
Modifier and Type | Field and Description |
---|---|
static UnsignedLong |
UnsignedLong.MAX_VALUE |
static UnsignedLong |
UnsignedLong.MIN_VALUE |
Modifier and Type | Method and Description |
---|---|
int |
UnsignedLong.compareTo(UnsignedLong other) |
Constructor and Description |
---|
UnsignedLong(UnsignedLong other)
Initializes with another unsigned long
|
Modifier and Type | Method and Description |
---|---|
static UnsignedLong |
HashingUtils.bytesToUInt64(byte[] ba)
An efficient hashing algorithm with good distribution
|
static UnsignedLong |
ConversionUtils.fromAlphanumericToUInt64(java.lang.String alphanumeric)
Converts an alphanumeric back to a ulong
|
static UnsignedLong |
ConversionUtils.fromBase64ToUInt64(java.lang.String base64)
Converts a Base64 back to a ulong.
|
static UnsignedLong |
ConversionUtils.fromBinaryToUInt64(java.lang.String binary)
Converts a binary back to a ulong.
|
static UnsignedLong |
ConversionUtils.fromHexToUInt64(java.lang.String hex)
Converts a hex back to a ulong Hex representations can be endian dependent.
|
static UnsignedLong |
ConversionUtils.fromStringToUInt64(java.lang.String value)
Converts a string back to a ulong
|
static UnsignedLong |
StringUtils.parseUInt64(java.lang.String value)
Parses a ulong from a string
|
static UnsignedLong |
StringUtils.parseUInt64(java.lang.String value,
UnsignedLong minValue,
UnsignedLong maxValue)
Parses a ulong from a string
|
static UnsignedLong |
HashingUtils.stringtoUInt64(java.lang.String str)
An efficient hashing algorithm with good distribution
|
static UnsignedLong |
ByteArrayUtils.toUInt64(byte[] value)
Inverse function of GetBytes(UnsignedLong)
|
Modifier and Type | Method and Description |
---|---|
static TryResult<UnsignedLong> |
StringUtils.tryParseUInt64(java.lang.String value)
Tries to parse the given value.
|
static TryResult<UnsignedLong> |
StringUtils.tryParseUInt64(java.lang.String value,
UnsignedLong minValue,
UnsignedLong maxValue)
Tries to parse the given value.
|
Modifier and Type | Method and Description |
---|---|
static byte[] |
ByteArrayUtils.getBytes(UnsignedLong value)
Similar to BitConverter.GetBytes() of .NET.
|
static UnsignedLong |
StringUtils.parseUInt64(java.lang.String value,
UnsignedLong minValue,
UnsignedLong maxValue)
Parses a ulong from a string
|
static java.lang.String |
ConversionUtils.toAlphanumeric(UnsignedLong num)
Converts a number to alphanumeric, e.g.
|
static java.lang.String |
ConversionUtils.toAlphanumeric(UnsignedLong num,
boolean padLeft)
Converts a number to alphanumeric, e.g.
|
static java.lang.String |
ConversionUtils.toBase64(UnsignedLong num)
Converts a number to Base64.
|
static java.lang.String |
ConversionUtils.toBinary(UnsignedLong num)
Converts a number to binary, e.g.
|
static java.lang.String |
ConversionUtils.toBinary(UnsignedLong num,
boolean padLeft)
Converts a number to binary, e.g.
|
static java.lang.String |
ConversionUtils.toHex(UnsignedLong num)
Converts a number to hex, e.g.
|
static java.lang.String |
ConversionUtils.toHex(UnsignedLong num,
boolean padLeft)
Converts a number to hex, e.g.
|
static TryResult<UnsignedLong> |
StringUtils.tryParseUInt64(java.lang.String value,
UnsignedLong minValue,
UnsignedLong maxValue)
Tries to parse the given value.
|
Constructor and Description |
---|
UInt64PropertyMetadata(java.lang.String name,
UnsignedLong minValue,
UnsignedLong maxValue,
boolean notNull)
Constructor initializing with a min and a max value
|