public class NlsNullPointerException extends NlsRuntimeException
NlsNullPointerException
is analog to an NullPointerException
but with native language support.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 |
NlsNullPointerException()
The constructor for de-serialization in GWT.
|
|
NlsNullPointerException(String argument)
The constructor.
|
|
NlsNullPointerException(String argument,
Throwable nested)
The constructor.
|
Modifier and Type | Method and Description |
---|---|
static <O> void |
checkNotNull(Class<O> type,
O object)
This method checks if the given
object is null . |
static void |
checkNotNull(String objectName,
Object object)
This method checks if the given
object is null . |
String |
getCode()
This method gets the code that identifies the detailed type of this object.
|
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 NlsNullPointerException()
public NlsNullPointerException(String argument)
argument
- is the argument that is illegal. May be null
.public static <O> void checkNotNull(Class<O> type, O object) throws NlsNullPointerException
object
is null
. if
-statement, but also defines a common pattern that is refactoring-safe. Class
es for type
such as Object
,
String
, Integer
, etc. public void myMethod(MySpecificBusinessObject businessObject, String someParameter) {NlsNullPointerException
.checkNotNull(MySpecificBusinessObject.class, businessObject);NlsNullPointerException
.checkNotNull("someParameter", someParameter); doTheWork(); }
O
- is the generic type of the object
.type
- is the class reflecting the object
. Its simple name
will be used
in the exception-message if object
is null
.object
- is the object that is checked and should NOT be null
.NlsNullPointerException
- if the given object
is null
.public static void checkNotNull(String objectName, Object object) throws NlsNullPointerException
object
is null
.
NlsNullPointerException
.checkNotNull("someParameter", someParameter);
This is equivalent to this code:
if (someParameter == null) {
throw new NlsNullPointerException
("someParameter");
}
objectName
- is the (argument-)name of the given object
.object
- is the object that is checked and should NOT be null
.NlsNullPointerException
- if the given object
is null
.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.