public enum AttributeHandlingType extends Enum<AttributeHandlingType>
Module: group-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>group-api</artifactId> </dependency>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<AttributeHandlingType>
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.