Package | Description |
---|---|
propel.core.collections.maps | |
propel.core.collections.maps.avl | |
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
TryResult<TValue> |
IHashtable.tryGetValue(TKey key)
Attempts to get a value by a given key.
|
Modifier and Type | Method and Description |
---|---|
TryResult<TValue> |
AvlHashtable.tryGetValue(TKey key)
Attempts to get a value by a given key.
|
Modifier and Type | Method and Description |
---|---|
static TryResult<java.lang.Boolean> |
StringUtils.tryParseBool(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Boolean> |
StringUtils.tryParseBool(java.lang.String value,
java.lang.String trueValue,
java.lang.String falseValue,
StringComparison comparisonType)
Tries to parse the given value.
|
static TryResult<java.lang.Character> |
StringUtils.tryParseChar(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Character> |
StringUtils.tryParseChar(java.lang.String value,
char minValue,
char maxValue)
Tries to parse the given value.
|
static TryResult<org.joda.time.LocalDateTime> |
StringUtils.tryParseDateTime(java.lang.String value)
Tries to parse the given value.
|
static TryResult<org.joda.time.LocalDateTime> |
StringUtils.tryParseDateTime(java.lang.String value,
org.joda.time.format.DateTimeFormatter fmt)
Tries to parse the given value.
|
static TryResult<org.joda.time.LocalDateTime> |
StringUtils.tryParseDateTime(java.lang.String value,
org.joda.time.LocalDateTime minValue,
org.joda.time.LocalDateTime maxValue,
org.joda.time.format.DateTimeFormatter fmt)
Tries to parse the given value.
|
static TryResult<java.math.BigDecimal> |
StringUtils.tryParseDecimal(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.math.BigDecimal> |
StringUtils.tryParseDecimal(java.lang.String value,
java.math.BigDecimal minValue,
java.math.BigDecimal maxValue)
Tries to parse the given value.
|
static TryResult<java.lang.Double> |
StringUtils.tryParseDouble(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Double> |
StringUtils.tryParseDouble(java.lang.String value,
double minValue,
double maxValue,
boolean allowInfinity,
boolean allowNaN)
Tries to parse the given value.
|
static TryResult<java.lang.Float> |
StringUtils.tryParseFloat(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Float> |
StringUtils.tryParseFloat(java.lang.String value,
float minValue,
float maxValue,
boolean allowInfinity,
boolean allowNaN)
Tries to parse the given value.
|
static TryResult<Int128> |
StringUtils.tryParseInt128(java.lang.String value)
Tries to parse the given value.
|
static TryResult<Int128> |
StringUtils.tryParseInt128(java.lang.String value,
Int128 minValue,
Int128 maxValue)
Tries to parse the given value.
|
static TryResult<java.lang.Short> |
StringUtils.tryParseInt16(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Short> |
StringUtils.tryParseInt16(java.lang.String value,
short minValue,
short maxValue)
Tries to parse the given value.
|
static TryResult<java.lang.Integer> |
StringUtils.tryParseInt32(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Integer> |
StringUtils.tryParseInt32(java.lang.String value,
int minValue,
int maxValue)
Tries to parse the given value.
|
static TryResult<java.lang.Long> |
StringUtils.tryParseInt64(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Long> |
StringUtils.tryParseInt64(java.lang.String value,
long minValue,
long maxValue)
Tries to parse the given value.
|
static TryResult<java.lang.Byte> |
StringUtils.tryParseInt8(java.lang.String value)
Tries to parse the given value.
|
static TryResult<java.lang.Byte> |
StringUtils.tryParseInt8(java.lang.String value,
byte minValue,
byte maxValue)
Tries to parse the given value.
|
static TryResult<java.net.InetAddress> |
StringUtils.tryParseIpAddress(java.lang.String value)
Tries to parse the given value.
|
static TryResult<org.joda.time.Duration> |
StringUtils.tryParseTimeSpan(java.lang.String value)
Tries to parse the given value.
|
static TryResult<org.joda.time.Duration> |
StringUtils.tryParseTimeSpan(java.lang.String value,
org.joda.time.Duration minValue,
org.joda.time.Duration maxValue)
Tries to parse the given value.
|
static TryResult<UnsignedShort> |
StringUtils.tryParseUInt16(java.lang.String value)
Tries to parse the given value.
|
static TryResult<UnsignedShort> |
StringUtils.tryParseUInt16(java.lang.String value,
UnsignedShort minValue,
UnsignedShort maxValue)
Tries to parse the given value.
|
static TryResult<UnsignedInteger> |
StringUtils.tryParseUInt32(java.lang.String value)
Tries to parse the given value.
|
static TryResult<UnsignedInteger> |
StringUtils.tryParseUInt32(java.lang.String value,
UnsignedInteger minValue,
UnsignedInteger maxValue)
Tries to parse the given value.
|
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.
|
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.
|
static TryResult<java.util.UUID> |
StringUtils.tryParseUuid(java.lang.String value)
Tries to parse the given value.
|