|
OpenAPI 1.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AQShortFactory
This interface provides manipulation and validation functionality for Short
data type.
An instance of this interface is available via aqua.type.getShort(). (For technical reasons, aqua.type.short is not available).
Method Summary | |
---|---|
boolean |
isEqual(Object a,
Object b)
Checks if two values are equal, if treated as short integers. |
boolean |
isGreater(Object a,
Object b)
Checks if the value is greater than a specified threshold. |
boolean |
isGreaterOrEqual(Object a,
Object b)
Checks if the value is less than or equals to a specified threshold. |
boolean |
isInRange(Object value,
Object min,
Object max)
Checks if the value is within a specified range, inclusive. |
boolean |
isLess(Object a,
Object b)
Checks if the value is less than a specified threshold. |
boolean |
isLessOrEqual(Object a,
Object b)
Checks if the value is less than or equals to a specified threshold. |
boolean |
isValid(String value)
Interprets a specified value as a Short (using default platform locale). |
Short |
parse(Object value)
Creates a Short instance assuming default platform locale. |
Short |
parse(String value,
String pattern)
Creates a Short instance using a specified pattern and locale. |
Short |
parse(String value,
String pattern,
String locale)
Interprets a specified value as a Short using a specified pattern and locale. |
Method Detail |
---|
Short parse(Object value)
value
- The value to be converted.
Exception
- If the parameter is invalid.Short parse(String value, String pattern)
value
- The value to be converted.pattern
- The pattern used to validate the value against or null to
use the default for the Locale. Please see DecimalFormatSymbols
Exception
- If the parameter is invalid.Short parse(String value, String pattern, String locale)
value
- The value to be converted.pattern
- The pattern used to validate the value against or null to
use the default for the Locale. Please see DecimalFormatSymbols
locale
- The locale to use for the format, system default if null. Please see Locale
.
Exception
- If the parameter is invalid.boolean isInRange(Object value, Object min, Object max)
value
- The value in question.min
- Start of the range.max
- End of the range.
Exception
- If any of the parameters cannot be converted to a short.boolean isLess(Object a, Object b)
a
- The integer value to compare to.b
- The integer value to compare with.
Exception
- If any of the parameters cannot be converted to a short.boolean isLessOrEqual(Object a, Object b)
a
- The integer value to compare to.b
- The integer value to compare with.
Exception
- If any of the parameters cannot be converted to a short.boolean isGreater(Object a, Object b)
a
- The short value to compare to.b
- The short value to compare with.
Exception
- If any of the parameters cannot be converted to a short.boolean isGreaterOrEqual(Object a, Object b)
a
- The short value to compare to.b
- The short value to compare with.
Exception
- If any of the parameters cannot be converted to a short.boolean isEqual(Object a, Object b)
a
- The first integer value.b
- The second integer value.
Exception
- If any of the parameters cannot be converted to a short integer.boolean isValid(String value)
value
-
|
OpenAPI 1.0 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |