gr.uoa.di.madgik.execution.datatype
Enum IDataType.DataTypes

java.lang.Object
  extended by java.lang.Enum<IDataType.DataTypes>
      extended by gr.uoa.di.madgik.execution.datatype.IDataType.DataTypes
All Implemented Interfaces:
Serializable, Comparable<IDataType.DataTypes>
Enclosing interface:
IDataType

public static enum IDataType.DataTypes
extends Enum<IDataType.DataTypes>

The known DataTypes.


Enum Constant Summary
Array
          Array implemented by DataTypeArray.
BooleanClass
          Boolean class implemented by DataTypeBooleanClass.
BooleanPrimitive
          Boolean primitive implemented by DataTypeBooleanPrimitive.
Convertable
          Convertable implemented by DataTypeConvertable.
DoubleClass
          Double class implemented by DataTypeDoubleClass.
DoublePrimitive
          Double primitive implemented by DataTypeDoublePrimitive.
FloatClass
          Float class implemented by DataTypeFloatClass.
FloatPrimitive
          Float primitive implemented by DataTypeFloatPrimitive.
IntegerClass
          Integer class implemented by DataTypeIntegerClass.
IntegerPrimitive
          Integer primitive implemented by DataTypeIntegerPrimitive.
LongClass
          Long class implemented by DataTypeLongClass.
LongPrimitive
          Long primitive implemented by DataTypeLongPrimitive.
Reflectable
          Reflectable implemented by DataTypeReflectable.
ResultSet
          Result set implemented by DataTypeResultSet.
String
          String implemented by DataTypeString.
 
Method Summary
static IDataType.DataTypes valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IDataType.DataTypes[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BooleanClass

public static final IDataType.DataTypes BooleanClass
Boolean class implemented by DataTypeBooleanClass.


BooleanPrimitive

public static final IDataType.DataTypes BooleanPrimitive
Boolean primitive implemented by DataTypeBooleanPrimitive.


DoubleClass

public static final IDataType.DataTypes DoubleClass
Double class implemented by DataTypeDoubleClass.


DoublePrimitive

public static final IDataType.DataTypes DoublePrimitive
Double primitive implemented by DataTypeDoublePrimitive.


FloatClass

public static final IDataType.DataTypes FloatClass
Float class implemented by DataTypeFloatClass.


FloatPrimitive

public static final IDataType.DataTypes FloatPrimitive
Float primitive implemented by DataTypeFloatPrimitive.


IntegerClass

public static final IDataType.DataTypes IntegerClass
Integer class implemented by DataTypeIntegerClass.


IntegerPrimitive

public static final IDataType.DataTypes IntegerPrimitive
Integer primitive implemented by DataTypeIntegerPrimitive.


LongClass

public static final IDataType.DataTypes LongClass
Long class implemented by DataTypeLongClass.


LongPrimitive

public static final IDataType.DataTypes LongPrimitive
Long primitive implemented by DataTypeLongPrimitive.


String

public static final IDataType.DataTypes String
String implemented by DataTypeString.


ResultSet

public static final IDataType.DataTypes ResultSet
Result set implemented by DataTypeResultSet.


Convertable

public static final IDataType.DataTypes Convertable
Convertable implemented by DataTypeConvertable.


Reflectable

public static final IDataType.DataTypes Reflectable
Reflectable implemented by DataTypeReflectable.


Array

public static final IDataType.DataTypes Array
Array implemented by DataTypeArray.

Method Detail

values

public static IDataType.DataTypes[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IDataType.DataTypes c : IDataType.DataTypes.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IDataType.DataTypes valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2013. All Rights Reserved.