@InterfaceAudience.Private public enum Field extends Enum<Field>
| Modifier and Type | Field and Description | 
|---|---|
| private boolean | autoAdjust | 
| private String | description | 
| private FieldValueType | fieldValueType | 
| private String | header | 
| private boolean | leftJustify | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getDescription() | 
| FieldValueType | getFieldValueType() | 
| String | getHeader() | 
| boolean | isAutoAdjust() | 
| boolean | isLeftJustify() | 
| FieldValue | newValue(Object value) | 
| static Field | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Field[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Field REGION_NAME
public static final Field START_CODE
public static final Field REPLICA_ID
public static final Field REGION_SERVER
public static final Field LONG_REGION_SERVER
public static final Field REQUEST_COUNT_PER_SECOND
public static final Field READ_REQUEST_COUNT_PER_SECOND
public static final Field FILTERED_READ_REQUEST_COUNT_PER_SECOND
public static final Field WRITE_REQUEST_COUNT_PER_SECOND
public static final Field STORE_FILE_SIZE
public static final Field UNCOMPRESSED_STORE_FILE_SIZE
public static final Field NUM_STORE_FILES
public static final Field MEM_STORE_SIZE
public static final Field COMPACTING_CELL_COUNT
public static final Field COMPACTED_CELL_COUNT
public static final Field COMPACTION_PROGRESS
public static final Field LAST_MAJOR_COMPACTION_TIME
public static final Field REGION_COUNT
public static final Field USED_HEAP_SIZE
public static final Field MAX_HEAP_SIZE
public static final Field CLIENT_COUNT
public static final Field USER_COUNT
private final String description
private final boolean autoAdjust
private final boolean leftJustify
private final FieldValueType fieldValueType
public static Field[] values()
for (Field c : Field.values()) System.out.println(c);
public static Field 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 FieldValue newValue(Object value)
public String getDescription()
public boolean isAutoAdjust()
public boolean isLeftJustify()
public FieldValueType getFieldValueType()
Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.