V - is the generic type of the value.public abstract class AbstractSimpleDatatypeBase<V> extends AbstractDatatype implements SimpleDatatype<V>
Datatype.| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID
UID for serialization.
|
| Constructor and Description |
|---|
AbstractSimpleDatatypeBase()
The constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
static <V> V |
getValue(SimpleDatatype<V> datatype) |
int |
hashCode() |
String |
toString()
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetValueprivate static final long serialVersionUID
public String toString()
String representation of this Datatype. While the general contract
of Object.toString() is very weak and mainly used for debugging, the contract here is very
strong. The returned String has to be suitable for end-users and official output to any kind of
sink. NlsMessage for this purpose and implement
NlsObject if you want to support I18N/L10N.public static <V> V getValue(SimpleDatatype<V> datatype)
V - is the generic type of the contained value.datatype - is the SimpleDatatype to get the value from.value of the given datatype or null if
datatype is null.Copyright © 2001–2015 mmm-Team. All rights reserved.