com.hyper9.simdk.stubs.enums
Enum EventCategory
java.lang.Object
java.lang.Enum<EventCategory>
com.hyper9.simdk.stubs.enums.EventCategory
- All Implemented Interfaces:
- Serializable, Comparable<EventCategory>
public enum EventCategory
- extends Enum<EventCategory>
- Author:
- akutz
Method Summary |
static EventCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EventCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Info
public static final EventCategory Info
Warning
public static final EventCategory Warning
Error
public static final EventCategory Error
User
public static final EventCategory User
values
public static EventCategory[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (EventCategory c : EventCategory.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EventCategory valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2009-2010 Hyper9. All Rights Reserved.