public enum ClassificationMethod extends Enum<ClassificationMethod>
| Enum Constant and Description | 
|---|
| EQUAL_INTERVALClassifies data into equally sized ranges. | 
| NATURAL_BREAKSClassifies data into ranges such that ranges correspond to "clusters" of values. | 
| QUANTILEClassifies data into ranges such that the number of values falling into each range is
 approximately the same. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ClassificationMethod | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ClassificationMethod[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ClassificationMethod EQUAL_INTERVAL
public static final ClassificationMethod QUANTILE
public static final ClassificationMethod NATURAL_BREAKS
public static ClassificationMethod[] values()
for (ClassificationMethod c : ClassificationMethod.values()) System.out.println(c);
public static ClassificationMethod 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 nullCopyright © 1996–2019 Geotools. All rights reserved.