|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AttributeHandlingType>
org.cytoscape.group.data.AttributeHandlingType
public enum AttributeHandlingType
The AttributeHandlingType enum contains the list of all of the different ways that attributes can be aggregated. Note that there is no explicit mapping from attribute type to allowable attribute aggregation type. That mapping is contained within the various AttributeHandlingType arrays defined below.
Enum Constant Summary | |
---|---|
AND
Aggregated as a logical AND of all values. |
|
AVG
Aggregated as the average of all values. |
|
CONCAT
Aggregated as a concatenation of all values. |
|
CSV
Aggregated as comma-separated values. |
|
DEFAULT
Default, no aggregation. |
|
MAX
Aggregated as the maximum value. |
|
MCV
Aggregated as most common value. |
|
MEDIAN
Aggregated as the median value. |
|
MIN
Aggregated as the minimum value. |
|
NONE
No aggregation. |
|
OR
Aggregated as a logical OR of all values. |
|
SUM
Aggregated as the sum of all values. |
|
TSV
Aggregated as tab-separated values. |
|
UNIQUE
Aggregated as unique values. |
Method Summary | |
---|---|
String |
toString()
Returns a human readable name for this enum value. |
static AttributeHandlingType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AttributeHandlingType[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AttributeHandlingType NONE
public static final AttributeHandlingType CSV
public static final AttributeHandlingType TSV
public static final AttributeHandlingType MCV
public static final AttributeHandlingType SUM
public static final AttributeHandlingType AVG
public static final AttributeHandlingType MIN
public static final AttributeHandlingType MAX
public static final AttributeHandlingType MEDIAN
public static final AttributeHandlingType CONCAT
public static final AttributeHandlingType UNIQUE
public static final AttributeHandlingType AND
public static final AttributeHandlingType OR
public static final AttributeHandlingType DEFAULT
Method Detail |
---|
public static AttributeHandlingType[] values()
for (AttributeHandlingType c : AttributeHandlingType.values()) System.out.println(c);
public static AttributeHandlingType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<AttributeHandlingType>
|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |