edu.udo.cs.yale.tools
Class Ontology

java.lang.Object
  extended by edu.udo.cs.yale.tools.Ontology

public class Ontology
extends java.lang.Object

Very simple ontology class. Two static ontologies are available: ATTRIBUTE_BLOCK_TYPE and ATTRIBUTE_VALUE_TYPE. It provides a single method boolean isA(int sub, int super) which does what isA-methods are usually expected to do. Legal parameters are the constants.

Version:
$Id: Ontology.java,v 2.14 2006/08/03 14:39:31 ingomierswa Exp $
Author:
Simon Fischer, Ingo Mierswa

Field Summary
static int ATTRIBUTE_BLOCK
           
static Ontology ATTRIBUTE_BLOCK_TYPE
          An ontology for block types (single, time series...)
static int ATTRIBUTE_VALUE
           
static Ontology ATTRIBUTE_VALUE_TYPE
          An ontology for value types (nominal, numerical...)
static int BLOCK_TYPE
           
static java.lang.String[] BLOCK_TYPE_NAMES
           
static int BOOLEAN
           
static int CLASSIFICATION
           
static int CLUSTER
           
static int FILE_PATH
           
static int INTEGER
           
static int INTERVAL
           
static int INTERVAL_END
           
static int INTERVAL_START
           
private  java.lang.String[] names
          Human readable string representations.
static int NO_PARENT
           
static int NOMINAL
           
static int NON_SERIES
           
static int NUMERICAL
           
static int ORDERED
           
private  int[] parentId
          The parent's index in the array.
static int REAL
           
static int SINGLE_VALUE
           
static int STRING
           
static int VALUE_SERIES
           
static int VALUE_SERIES_END
           
static int VALUE_SERIES_START
           
static int VALUE_TYPE
           
static java.lang.String[] VALUE_TYPE_NAMES
           
static int X
           
static int Y
           
 
Constructor Summary
private Ontology(int[] parents, java.lang.String[] names)
          Constructs a new ontology where each of the entries points to its parent.
 
Method Summary
 java.lang.String[] getNames()
           
 boolean isA(int child, int parent)
          Returns true if child is a parent.
 java.lang.String mapIndex(int index)
          Maps an index to its name.
 int mapName(java.lang.String name)
          Maps the name of a class to its index or -1 if unknown.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

VALUE_TYPE

public static final int VALUE_TYPE
See Also:
Constant Field Values

BLOCK_TYPE

public static final int BLOCK_TYPE
See Also:
Constant Field Values

parentId

private int[] parentId
The parent's index in the array. Root has parent -1.


names

private java.lang.String[] names
Human readable string representations.


NO_PARENT

public static final int NO_PARENT
See Also:
Constant Field Values

ATTRIBUTE_VALUE

public static final int ATTRIBUTE_VALUE
See Also:
Constant Field Values

NOMINAL

public static final int NOMINAL
See Also:
Constant Field Values

NUMERICAL

public static final int NUMERICAL
See Also:
Constant Field Values

INTEGER

public static final int INTEGER
See Also:
Constant Field Values

REAL

public static final int REAL
See Also:
Constant Field Values

STRING

public static final int STRING
See Also:
Constant Field Values

ORDERED

public static final int ORDERED
See Also:
Constant Field Values

CLUSTER

public static final int CLUSTER
See Also:
Constant Field Values

CLASSIFICATION

public static final int CLASSIFICATION
See Also:
Constant Field Values

BOOLEAN

public static final int BOOLEAN
See Also:
Constant Field Values

FILE_PATH

public static final int FILE_PATH
See Also:
Constant Field Values

VALUE_TYPE_NAMES

public static final java.lang.String[] VALUE_TYPE_NAMES

ATTRIBUTE_VALUE_TYPE

public static final Ontology ATTRIBUTE_VALUE_TYPE
An ontology for value types (nominal, numerical...)


ATTRIBUTE_BLOCK

public static final int ATTRIBUTE_BLOCK
See Also:
Constant Field Values

VALUE_SERIES

public static final int VALUE_SERIES
See Also:
Constant Field Values

NON_SERIES

public static final int NON_SERIES
See Also:
Constant Field Values

SINGLE_VALUE

public static final int SINGLE_VALUE
See Also:
Constant Field Values

INTERVAL

public static final int INTERVAL
See Also:
Constant Field Values

X

public static final int X
See Also:
Constant Field Values

Y

public static final int Y
See Also:
Constant Field Values

VALUE_SERIES_START

public static final int VALUE_SERIES_START
See Also:
Constant Field Values

VALUE_SERIES_END

public static final int VALUE_SERIES_END
See Also:
Constant Field Values

INTERVAL_START

public static final int INTERVAL_START
See Also:
Constant Field Values

INTERVAL_END

public static final int INTERVAL_END
See Also:
Constant Field Values

BLOCK_TYPE_NAMES

public static final java.lang.String[] BLOCK_TYPE_NAMES

ATTRIBUTE_BLOCK_TYPE

public static final Ontology ATTRIBUTE_BLOCK_TYPE
An ontology for block types (single, time series...)

Constructor Detail

Ontology

private Ontology(int[] parents,
                 java.lang.String[] names)
Constructs a new ontology where each of the entries points to its parent.

Method Detail

isA

public boolean isA(int child,
                   int parent)
Returns true if child is a parent.


mapName

public int mapName(java.lang.String name)
Maps the name of a class to its index or -1 if unknown.


mapIndex

public java.lang.String mapIndex(int index)
Maps an index to its name.


getNames

public java.lang.String[] getNames()


Copyright © 2001-2006