public class ValueOutOfRangeException extends ValueException
GenericValueConverter.convertValue(Object, Object, Number, Number),
Serialized Form| Modifier and Type | Field and Description |
|---|---|
static String |
MESSAGE_CODE |
private static long |
serialVersionUID
UID for serialization.
|
KEY_ANNOTATION, KEY_ARGUMENT, KEY_CAPACITY, KEY_CONTAINER, KEY_DEFAULT, KEY_DIRECTORY, KEY_ERROR, KEY_EXISTING, KEY_EXPECTED, KEY_FILE, KEY_FUNCTION, KEY_ID, KEY_KEY, KEY_LOCATION, KEY_MAX, KEY_MIN, KEY_MODE, KEY_NAME, KEY_OBJECT, KEY_OPERAND, KEY_OPERATION, KEY_OPTION, KEY_PATH, KEY_PROPERTY, KEY_QUERY, KEY_RESOURCE, KEY_SIZE, KEY_SOURCE, KEY_TARGET_TYPE, KEY_TITLE, KEY_TYPE, KEY_URI, KEY_USER, KEY_VALUE| Modifier | Constructor and Description |
|---|---|
protected |
ValueOutOfRangeException()
The constructor for de-serialization in GWT.
|
|
ValueOutOfRangeException(Number value,
Number minimum,
Number maximum)
The constructor.
|
|
ValueOutOfRangeException(Number value,
Number minimum,
Number maximum,
Object valueSource)
The constructor.
|
|
ValueOutOfRangeException(Object valueSource,
V value,
V minimum,
V maximum)
The constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
checkRange(Number value,
Number minimum,
Number maximum,
Object valueSource)
This method checks that the given
value is in the inclusive range from minimum to
maximum. |
static <V> NlsMessage |
createMessage(V value,
V minimum,
V maximum,
Object valueSource)
|
String |
getCode()
This method gets the code that identifies the detailed type of this object.
|
private <V extends Comparable> |
verifyComparable(V value,
V minimum,
V maximum)
Verifies that the
value is actually out of range. |
private void |
verifyNumber(Number value,
Number minimum,
Number maximum)
Verifies that the
value is actually out of range. |
createBundle, createCopy, createCopyViaClone, createUuid, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getMessage, getNlsMessage, getUuid, isForUser, isTechnical, printStackTrace, toNlsMessage, toString, toString, toStringaddSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTraceclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetCause, getStackTraceprivate static final long serialVersionUID
public static final String MESSAGE_CODE
getCode(),
Constant Field Valuesprotected ValueOutOfRangeException()
public ValueOutOfRangeException(Number value, Number minimum, Number maximum)
value - is the number that is out of range.minimum - is the minimum value allowedmaximum - is the maximum value allowed.public ValueOutOfRangeException(Number value, Number minimum, Number maximum, Object valueSource)
value - is the number that is out of range.minimum - is the minimum value allowedmaximum - is the maximum value allowed.valueSource - describes the source of the value. This may be the filename where the value was read from, an
XPath where the value was located in an XML document, etc. It is used in exceptions thrown if something goes
wrong. This will help to find the problem easier.public ValueOutOfRangeException(Object valueSource, V value, V minimum, V maximum)
V - is the generic type of the values.valueSource - describes the source of the value or null if NOT available. This may be the
filename where the value was read from, an XPath where the value was located in an XML document, etc. It is
used in exceptions thrown if something goes wrong. This will help to find the problem easier.value - is the number that is out of range.minimum - is the minimum value allowedmaximum - is the maximum value allowed.private <V extends Comparable> void verifyComparable(V value, V minimum, V maximum)
value is actually out of range.V - is the generic type of the values.value - is the number that is out of range.minimum - is the minimum value allowedmaximum - is the maximum value allowed.private void verifyNumber(Number value, Number minimum, Number maximum)
value is actually out of range.value - is the number that is out of range.minimum - is the minimum value allowedmaximum - is the maximum value allowed.public static void checkRange(Number value, Number minimum, Number maximum, Object valueSource) throws ValueOutOfRangeException
value is in the inclusive range from minimum to
maximum.value - is the value to check.minimum - is the minimum number allowed.maximum - is the maximum number allowed.valueSource - describes the source of the value. This may be the filename where the value was read from, an
XPath where the value was located in an XML document, etc. It is used in exceptions thrown if something goes
wrong. This will help to find the problem easier. It may be null if there is no helpful source
available.ValueOutOfRangeException - - if the given value is NOT in the range from minimum to
maximum.public static <V> NlsMessage createMessage(V value, V minimum, V maximum, Object valueSource)
V - is the generic type of the values. Needs to be an instance of Number or Comparable.value - is the invalid value.minimum - is the minimum value or null if unbounded.maximum - is the maximum value or null if unbounded.valueSource - describes the source of value or null if unknown.NlsMessage.public String getCode()
UUID or ID are typically unique per
instance of an object the code is unique for all instances of the exact same kind. So e.g. a particular
kind of exception or
ValidationFailure can be identified by its code. A simple generic
implementation may return the classname or the key of the NLS message. However, the code should remain
stable after refactoring (so at least after the rename the previous code should be returned as
String literal). This code may be used as a compact identifier to reference the related problem
or information as well as for automatic tests of error situations that should remain stable even if the
message text gets improved or the locale is unknown.getCode in interface AttributeReadMessageCodegetCode in class NlsRuntimeExceptionThrowable.getMessage(),
NlsThrowable,
MessageCopyright © 2001–2015 mmm-Team. All rights reserved.