public static enum BottomTop.Method extends Enum<BottomTop.Method>
| Enum Constant and Description | 
|---|
| BOTTOM_COUNT | 
| BOTTOM_PERCENT | 
| BOTTOM_SUM | 
| TOP_COUNT | 
| TOP_PERCENT | 
| TOP_SUM | 
| Modifier and Type | Method and Description | 
|---|---|
| static BottomTop.Method | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static BottomTop.Method[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BottomTop.Method BOTTOM_COUNT
public static final BottomTop.Method BOTTOM_PERCENT
public static final BottomTop.Method BOTTOM_SUM
public static final BottomTop.Method TOP_COUNT
public static final BottomTop.Method TOP_PERCENT
public static final BottomTop.Method TOP_SUM
public static BottomTop.Method[] values()
for (BottomTop.Method c : BottomTop.Method.values()) System.out.println(c);
public static BottomTop.Method 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 © 2013–2023 The Apache Software Foundation. All rights reserved.