Package org.faktorips.datatype
Class ValueClassDatatype
java.lang.Object
org.faktorips.datatype.AbstractDatatype
org.faktorips.datatype.ValueClassNameDatatype
org.faktorips.datatype.ValueClassDatatype
- All Implemented Interfaces:
Comparable<Datatype>,Datatype,ValueDatatype
Deprecated.
A datatype that represents a Java class representing a value, for example java.lang.String.
-
Field Summary
Fields inherited from interface org.faktorips.datatype.Datatype
BIG_DECIMAL, BOOLEAN, DECIMAL, DOUBLE, GREGORIAN_CALENDAR, INTEGER, LONG, MONEY, PRIMITIVE_BOOLEAN, PRIMITIVE_INT, PRIMITIVE_LONG, STRING, VOID -
Constructor Summary
ConstructorsConstructorDescriptionValueClassDatatype(Class<?> clazz) Deprecated.Creates a new instance using the given type.ValueClassDatatype(Class<?> clazz, String name) Deprecated.Creates a new instance using the given class and name. -
Method Summary
Methods inherited from class org.faktorips.datatype.ValueClassNameDatatype
areValuesEqual, compare, getDefaultValue, getName, getQualifiedName, getValue, getWrapperType, hasNullObject, isAbstract, isImmutable, isMutable, isNull, isParsable, isPrimitive, isValueDatatype, valueToStringMethods inherited from class org.faktorips.datatype.AbstractDatatype
checkReadyToUse, compareTo, equals, hashCode, isEnum, isVoid, matchDatatype, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Comparable
compareToMethods inherited from interface org.faktorips.datatype.ValueDatatype
checkReadyToUse, getNullObjectId, supportsCompare
-
Constructor Details
-
ValueClassDatatype
Deprecated.Creates a new instance using the given type. The name is provided from the given class name.- Parameters:
clazz- The java class that should be represented by this datatype
-
ValueClassDatatype
Deprecated.Creates a new instance using the given class and name.- Parameters:
clazz- The java class that should be represented by this datatypename- The name of the datatype
-
ValueClassNameDatatypeto have the same functionality.