public enum EHandled extends Enum<EHandled> implements IHandledIndicator
| Modifier and Type | Method and Description |
|---|---|
boolean |
isHandled() |
static EHandled |
valueOf(boolean bHandleded) |
static EHandled |
valueOf(IHandledIndicator aHandledIndicator) |
static EHandled |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EHandled[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfand, isUnhandled, orpublic static final EHandled HANDLED
public static final EHandled UNHANDLED
public static EHandled[] values()
for (EHandled c : EHandled.values()) System.out.println(c);
public static EHandled 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 boolean isHandled()
isHandled in interface IHandledIndicatortrue if handled and false if not.@Nonnull public static EHandled valueOf(@Nonnull IHandledIndicator aHandledIndicator)
Copyright © 2014–2022 Philip Helger. All rights reserved.