public enum EContinue extends Enum<EContinue> implements IContinueIndicator
| Modifier and Type | Method and Description |
|---|---|
boolean |
isContinue() |
static EContinue |
valueOf(boolean bContinue) |
static EContinue |
valueOf(IContinueIndicator aContinueIndicator) |
static EContinue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EContinue[] |
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, isBreak, orpublic static final EContinue CONTINUE
public static final EContinue BREAK
public static EContinue[] values()
for (EContinue c : EContinue.values()) System.out.println(c);
public static EContinue 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 isContinue()
isContinue in interface IContinueIndicatortrue to continue and false to break.@Nonnull public static EContinue valueOf(@Nonnull IContinueIndicator aContinueIndicator)
Copyright © 2014–2022 Philip Helger. All rights reserved.