|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.example.AbstractAttribute
public abstract class AbstractAttribute
This class holds all information on a single attribute.
AbstractExampleTable
and
DataRow
Ontology.ATTRIBUTE_VALUE_TYPE
,
Ontology.ATTRIBUTE_BLOCK_TYPE
Field Summary | |
---|---|
private int |
blockNumber
All attributes belonging to the same block should have a common block number. |
private int |
blockType
An int indicating the block type in terms of the Ontology.ATTRIBUTE_BLOCK_TYPE. |
private Attribute[] |
generatingFunctionArguments
If this attribute was generated, this array of attributes holds the input arguments of the generation. |
private boolean |
generatingFunctionInfix
This flag is true if the generating function should be displayed as infix operator. |
private java.lang.String |
generatingFunctionName
Name of the function if this attribute was generated. |
protected static int |
HIGHEST_BLOCK_NUMBER
The highest block number used so far. |
private int |
index
Index of this attribute in its ExampleTable. |
private java.lang.String |
name
Optionally contains the name of the attribute. |
private int[] |
unit
Unit exponents. |
private int |
unknownCounter
Number of undefined values of all attribute values in the data set. |
private int |
valueType
An int indicating the value type in terms of the Ontology.ATTRIBUTE_VALUE_TYPE. |
Fields inherited from interface edu.udo.cs.yale.example.Attribute |
---|
UNDEFINED_ATTRIBUTE_INDEX, UNDEFINED_BLOCK_NUMBER, UNIT_NAMES |
Constructor Summary | |
---|---|
protected |
AbstractAttribute(java.lang.String name,
int valueType)
Creates a simple attribute which is not part of a series and does not provide a unit string. |
protected |
AbstractAttribute(java.lang.String name,
int valueType,
int blockType,
int blockNumber,
java.lang.String functionName,
Attribute[] arguments,
boolean infix,
int[] units)
Creates a new attribute. |
Method Summary | |
---|---|
void |
clearConstructionDescription()
Clears the construction description. |
abstract java.lang.Object |
clone()
Explicite method definition is necessary to make clone method public. |
boolean |
compatible(Attribute a)
Returns true if value and block types of this attribute are subtypes of value and block type of a. |
boolean |
compatibleUnit(Attribute a)
Returns true if the units are equal. |
void |
copyProperties(Attribute attribute)
Copies all properties from the given attribute. |
static int[] |
divideUnits(int[] unit1,
int[] unit2)
Divides the first given units by the second. |
boolean |
equalConstructionDescription(Attribute a)
Returns true if the attribute was constructed the same way a was constructed. |
boolean |
equals(java.lang.Object o)
Returns true if the given attribute has the same name and table index. |
Attribute[] |
getArguments()
Returns the arguments that were used to generate this attribute. |
int |
getBlockNumber()
Get the value of block number. |
int |
getBlockType()
Returns the block type of this attribute. |
int |
getConstructionDepth()
Returns the depth of the syntax tree of the construction description. |
java.lang.String |
getConstructionDescription()
Returns a string that describes how this attribute was generated from other attributes. |
java.lang.String |
getConstructionDescription(boolean useInfix)
Returns a string that describes how this attribute was generated from other attributes. |
java.lang.String |
getFunctionName()
Returns the name of the function that generated this attribute. |
java.lang.String |
getName()
Returns the name of the attribute. |
int |
getTableIndex()
Returns the index in the example table. |
int |
getUnit(int index)
Returns the exponent of the unit. |
int |
getUnknownCounter()
Returns the number of undefined values for this attribute. |
int |
getValueType()
Returns the value type of this attribute. |
boolean |
isBlockStart()
Returns true if this attribute is the start attribute of its block. |
boolean |
isGenerated()
Returns true iff this attribute was generated. |
boolean |
isInterval()
Returns true if block type is a value series. |
boolean |
isSeries()
Returns true if block type is a value series. |
static int[] |
multiplyUnits(int[] unit1,
int[] unit2)
Multiplies the first given units with the second. |
static int[] |
parseUnits(java.lang.String unitString)
Reads the units from a string as generated by unitToString. |
void |
readAttributeData(java.io.DataInput in)
Reads the attribute data and initializes the corresponding fields from the given input stream. |
void |
setArguments(Attribute[] arguments)
Sets the arguments that were used to generate this attribute. |
void |
setBlockNumber(int blockNumber)
Sets the block number. |
void |
setBlockType(int b)
Sets the block type of this attribute. |
void |
setFunctionName(java.lang.String functionName)
Sets the name of the function that generated this attribute. |
void |
setName(java.lang.String v)
Sets the name of the attribtue. |
void |
setTableIndex(int i)
Sets the index in the example table. |
void |
setUnit(int index,
int exponent)
Sets the unit to given exponent. |
void |
setUnits(java.lang.String unitString)
Parses and sets the unit string. |
void |
setUnknownCounter(int unknownCounter)
Defines the number of undefined values for this attribute. |
java.lang.String |
toString()
Returns a human readable string that describes this attribute. |
java.lang.String |
unitToString()
Returns a string representation of the units. |
void |
writeAttributeData(java.io.DataOutput out)
Writes the (non transient) attribute data to an output stream. |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.example.Attribute |
---|
clearMaps, getAsString, getAverage, getIndex, getMaximum, getMinimum, getMode, getNegativeIndex, getNumberOfValues, getPositiveIndex, getStatisticsString, getValueCount, getValues, getVariance, isBooleanClassification, isDefault, isNominal, isNumerical, mapIndex, mapString, replaceValue, setAverage, setIndexToCounterMap, setMaximum, setMinimum, setMode, setVariance, sortNominalMappings |
Field Detail |
---|
protected static int HIGHEST_BLOCK_NUMBER
private java.lang.String name
private java.lang.String generatingFunctionName
private Attribute[] generatingFunctionArguments
private boolean generatingFunctionInfix
private int blockNumber
private int valueType
private int blockType
private int index
private int[] unit
private int unknownCounter
Constructor Detail |
---|
protected AbstractAttribute(java.lang.String name, int valueType)
protected AbstractAttribute(java.lang.String name, int valueType, int blockType, int blockNumber, java.lang.String functionName, Attribute[] arguments, boolean infix, int[] units)
Method Detail |
---|
public abstract java.lang.Object clone()
clone
in interface Attribute
clone
in class java.lang.Object
public void copyProperties(Attribute attribute)
copyProperties
in interface Attribute
public boolean equals(java.lang.Object o)
AbstractExampleTable
s.
equals
in interface Attribute
equals
in class java.lang.Object
public boolean equalConstructionDescription(Attribute a)
equalConstructionDescription
in interface Attribute
public java.lang.String getName()
getName
in interface Attribute
public void setName(java.lang.String v)
setName
in interface Attribute
public int getTableIndex()
getTableIndex
in interface Attribute
public void setTableIndex(int i)
setTableIndex
in interface Attribute
public boolean compatible(Attribute a)
compatible
in interface Attribute
public boolean compatibleUnit(Attribute a)
compatibleUnit
in interface Attribute
public int getUnknownCounter()
getUnknownCounter
in interface Attribute
public void setUnknownCounter(int unknownCounter)
setUnknownCounter
in interface Attribute
public int getBlockType()
getBlockType
in interface Attribute
Ontology.ATTRIBUTE_BLOCK_TYPE
public void setBlockType(int b)
setBlockType
in interface Attribute
Ontology.ATTRIBUTE_BLOCK_TYPE
public int getValueType()
getValueType
in interface Attribute
Ontology.ATTRIBUTE_VALUE_TYPE
public int getBlockNumber()
getBlockNumber
in interface Attribute
public void setBlockNumber(int blockNumber)
setBlockNumber
in interface Attribute
public void setUnits(java.lang.String unitString)
setUnits
in interface Attribute
public void setUnit(int index, int exponent)
setUnit
in interface Attribute
public int getUnit(int index)
getUnit
in interface Attribute
public boolean isSeries()
isSeries
in interface Attribute
public boolean isInterval()
isInterval
in interface Attribute
public boolean isBlockStart()
isBlockStart
in interface Attribute
public void setFunctionName(java.lang.String functionName)
setFunctionName
in interface Attribute
public java.lang.String getFunctionName()
getFunctionName
in interface Attribute
public void setArguments(Attribute[] arguments)
setArguments
in interface Attribute
public Attribute[] getArguments()
getArguments
in interface Attribute
public void clearConstructionDescription()
clearConstructionDescription
in interface Attribute
public java.lang.String getConstructionDescription()
getConstructionDescription
in interface Attribute
public java.lang.String getConstructionDescription(boolean useInfix)
getConstructionDescription
in interface Attribute
useInfix
- Whether or not to use infix notation for binary generatorspublic int getConstructionDepth()
getConstructionDepth
in interface Attribute
public boolean isGenerated()
isGenerated
in interface Attribute
public java.lang.String toString()
toString
in interface Attribute
toString
in class java.lang.Object
public java.lang.String unitToString()
unitToString
in interface Attribute
public static int[] parseUnits(java.lang.String unitString)
public void writeAttributeData(java.io.DataOutput out) throws java.io.IOException
writeAttributeData
in interface Attribute
java.io.IOException
public void readAttributeData(java.io.DataInput in) throws java.io.IOException
readAttributeData
in interface Attribute
java.io.IOException
public static int[] multiplyUnits(int[] unit1, int[] unit2)
public static int[] divideUnits(int[] unit1, int[] unit2)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |