public enum ResultFormat extends Enum<ResultFormat>
| Enum Constant and Description |
|---|
COMPACTED_LIST |
LIST |
VALUE_VECTOR |
| Modifier and Type | Method and Description |
|---|---|
String |
getResultFormat() |
static ResultFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultFormat LIST
public static final ResultFormat COMPACTED_LIST
public static final ResultFormat VALUE_VECTOR
public static ResultFormat[] values()
for (ResultFormat c : ResultFormat.values()) System.out.println(c);
public static ResultFormat 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 getResultFormat()
Copyright © 2019. All rights reserved.