gov.nih.nci.caarray.external.v1_0.sample
Class AnnotationValueSet

java.lang.Object
  extended by gov.nih.nci.caarray.external.v1_0.sample.AnnotationValueSet
All Implemented Interfaces:
java.io.Serializable

public class AnnotationValueSet
extends java.lang.Object
implements java.io.Serializable

An AnnotationValueSet contains the set of values for a given category. An AnnotationValueSet always belongs to an AnnotationColumn, and the set of values is for the node corresponding to that column. A node's set of values for a given category is calculated as follows:

Author:
dkokotov
See Also:
Serialized Form

Constructor Summary
AnnotationValueSet()
           
 
Method Summary
 boolean equals(java.lang.Object obj)
          
 Category getCategory()
           
 java.util.Set<AbstractValue> getValues()
           
 int hashCode()
          
 void setCategory(Category category)
           
 void setValues(java.util.Set<AbstractValue> values)
           
 java.lang.String toString()
          
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AnnotationValueSet

public AnnotationValueSet()
Method Detail

getValues

public java.util.Set<AbstractValue> getValues()
Returns:
the values

setValues

public void setValues(java.util.Set<AbstractValue> values)
Parameters:
values - the values to set

getCategory

public Category getCategory()
Returns:
the category

setCategory

public void setCategory(Category category)
Parameters:
category - the category to set

toString

public java.lang.String toString()

Overrides:
toString in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)

Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()

Overrides:
hashCode in class java.lang.Object