jigcell.compare
Class IDataElement.Type

java.lang.Object
  extended by jigcell.compare.IDataElement.Type
Enclosing interface:
IDataElement

public static final class IDataElement.Type
extends java.lang.Object

The types of a data element.


Field Summary
static IDataElement.Type BOOLEAN
          A scalar value that is either true or false
static IDataElement.Type INTEGRAL
          A scalar value contained in the integers
static IDataElement.Type LITERAL
          A scalar value that is a string literal
static IDataElement.Type MULTIPLE
          A non-scalar value
private  java.lang.String name
          Name of this type
static IDataElement.Type NONE
          A non-value
static IDataElement.Type REAL
          A scalar value contained in the reals
 
Constructor Summary
private IDataElement.Type(java.lang.String name)
          Creates a new data element type.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

BOOLEAN

public static final IDataElement.Type BOOLEAN
A scalar value that is either true or false


INTEGRAL

public static final IDataElement.Type INTEGRAL
A scalar value contained in the integers


LITERAL

public static final IDataElement.Type LITERAL
A scalar value that is a string literal


MULTIPLE

public static final IDataElement.Type MULTIPLE
A non-scalar value


NONE

public static final IDataElement.Type NONE
A non-value


REAL

public static final IDataElement.Type REAL
A scalar value contained in the reals


name

private final java.lang.String name
Name of this type

Constructor Detail

IDataElement.Type

private IDataElement.Type(java.lang.String name)
Creates a new data element type.

Parameters:
name - Display name
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object