public class ValueOutOfRangeException extends ValueException
Modifier and Type | Field and Description |
---|---|
static String |
MESSAGE_CODE |
private static long |
serialVersionUID |
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(V value,
V minimum,
V maximum)
The constructor.
|
|
ValueOutOfRangeException(V value,
V minimum,
V maximum,
Object valueSource)
The constructor.
|
Modifier and Type | Method and Description |
---|---|
static <V> void |
checkRange(V value,
V minimum,
V 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, printStackTrace, toNlsMessage, toString, toString, toString
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getCause, getStackTrace
private static final long serialVersionUID
public static final String MESSAGE_CODE
getCode()
,
Constant Field Valuesprotected ValueOutOfRangeException()
public ValueOutOfRangeException(V value, V minimum, V maximum)
V
- the generic type of the value that is out of range.value
- is the number that is out of range.minimum
- is the minimum value allowedmaximum
- is the maximum value allowed.public ValueOutOfRangeException(V value, V minimum, V maximum, Object valueSource)
V
- the generic type of the value that is out of range.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.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 <V> void checkRange(V value, V minimum, V maximum, Object valueSource) throws ValueOutOfRangeException
value
is in the inclusive range from minimum
to
maximum
.V
- the generic type of the value
to check.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()
AttributeReadMessageCode
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 AttributeReadMessageCode
getCode
in class NlsRuntimeException
Throwable.getMessage()
,
NlsThrowable
,
Message
Copyright © 2001–2016 mmm-Team. All rights reserved.