public static enum EventDataRepository.Column extends Enum<EventDataRepository.Column>
| Enum Constant and Description |
|---|
ID
ID
|
MESSAGE
MESSAGE
|
STATUS
STATUS
|
TIME
TIME
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static EventDataRepository.Column |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventDataRepository.Column[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventDataRepository.Column TIME
public static final EventDataRepository.Column ID
public static final EventDataRepository.Column STATUS
public static final EventDataRepository.Column MESSAGE
public static EventDataRepository.Column[] values()
for (EventDataRepository.Column c : EventDataRepository.Column.values()) System.out.println(c);
public static EventDataRepository.Column 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 getName()
Copyright © 2011-2013 The Apache Software Foundation. All Rights Reserved.