org.mmbase.datatypes |
|
Java Source File Name | Type | Comment |
AbstractLengthDataType.java | Class | A LengthDataType is a datatype that defines a length for its values (
AbstractLengthDataType.getLength(Object) ) ,
and restrictions on that (minimal an maximal length). |
BasicDataType.java | Class | Every DataType extends this one. |
BinaryDataType.java | Class | The datatype associated with byte arrays ('blobs'). |
BooleanDataType.java | Class | The DataType associated with a boolean value. |
CastException.java | Class | |
ComparableDataType.java | Class | Comparable datatypes have values which are
java.lang.Comparable , so can be ordered, and
therefore can have a minimum and a maximum value. |
ConfirmPasswordDataType.java | Class | A confirmed password datatype must have the same value as another field of the node (and makes
only sense as a field of a node). |
Constants.java | Class | |
DataType.java | Interface | A value in MMBase (such as the value of a field, or function parameter) is associated with a
'datatype'. |
DataTypeCollector.java | Class | A DataTypeCollector is a collection of named DataTypes. |
DataTypes.java | Class |
This class contains various methods for manipulating DataType objects.
It contains a static set of named DataType objects, with which it is possible to craete a set
of datatypes that are accessable throught the MMBase application.
This set contains, at the very least, the basic datatypes (a DataType for every
'MMBase' type, i.e. |
DateTimeDataType.java | Class | The date-time datatype further describes
java.util.Date objects. |
DateTimePattern.java | Class | This is a bit like SimpleDateFormat, because it accepts the same pattern String. |
DoubleDataType.java | Class | DataType associated with
java.lang.Double , as NumberDataType, but provides getMin and getMax as double. |
FloatDataType.java | Class | DataType associated with
java.lang.Float , as NumberDataType, but provides getMin and getMax as float. |
IntegerDataType.java | Class | DataType associated with
java.lang.Integer , a NumberDataType, but provides getMin and getMax as int. |
LengthDataType.java | Interface | A LengthDataType is a datatype that defines a length for its values (
LengthDataType.getLength(Object) ) ,
and restrictions on that (minimal an maximal length). |
ListDataType.java | Class | |
LongDataType.java | Class | DataType associated with
java.lang.Long , NumberDataType, but provides getMin and getMax as long. |
NodeDataType.java | Class | The Node data type describes a data type which is based on an MMBase 'node' field. |
NumberDataType.java | Class | A DataType representing some kind of numeric value, like a floating point number or an integer number. |
SecurityContextDataType.java | Class | A StringDataType with all security contexts strings as possible value. |
StringDataType.java | Class | The datatype for String fields. |
XmlDataType.java | Class | The data associated with 'XML' values (
org.w3c.dom.Document ). |