public enum SchedulerStrategy extends java.lang.Enum<SchedulerStrategy> implements WithKey
Enum Constant and Description |
---|
BASIC_SCHEDULER |
ENTERPRISE_SCHEDULER |
Modifier and Type | Method and Description |
---|---|
static SchedulerStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final SchedulerStrategy BASIC_SCHEDULER
public static final SchedulerStrategy ENTERPRISE_SCHEDULER
public static SchedulerStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SchedulerStrategy[] values()
for (SchedulerStrategy c : SchedulerStrategy.values()) System.out.println(c);
Copyright © 2017 Oracle Corp. All Rights Reserved.