public enum EventSource extends java.lang.Enum<EventSource>
| Enum Constant and Description |
|---|
SCHEDULE |
SCHEDULE_ONCE |
STATES |
| Modifier and Type | Method and Description |
|---|---|
static EventSource |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static EventSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventSource STATES
public static final EventSource SCHEDULE
public static final EventSource SCHEDULE_ONCE
public static EventSource[] values()
for (EventSource c : EventSource.values()) System.out.println(c);
public static EventSource 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 java.lang.String getValue()
public static EventSource fromValue(java.lang.String value)
Copyright 2015 Kii Corporation. All rights reserved. (Last updated on 2016-10-13 08:55 UTC)