public enum ExperimentalFeature extends Enum<ExperimentalFeature>
| Enum Constant and Description |
|---|
DUMP_THREAD_STATE |
ELASTIC |
GENERATE_SUMMARY_TASK |
NEW_ADVANCED_SEARCH_RESULTS |
NEW_DOC_CLASS_VIEW |
| Modifier and Type | Method and Description |
|---|---|
static ExperimentalFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExperimentalFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExperimentalFeature ELASTIC
public static final ExperimentalFeature DUMP_THREAD_STATE
public static final ExperimentalFeature GENERATE_SUMMARY_TASK
public static final ExperimentalFeature NEW_DOC_CLASS_VIEW
public static final ExperimentalFeature NEW_ADVANCED_SEARCH_RESULTS
public static ExperimentalFeature[] values()
for (ExperimentalFeature c : ExperimentalFeature.values()) System.out.println(c);
public static ExperimentalFeature 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 © 2022 Suncode. All rights reserved.