public enum EContinue extends Enum<EContinue> implements IContinueIndicator
| Modifier and Type | Method and Description |
|---|---|
EContinue |
and(IContinueIndicator aContinue) |
boolean |
isBreak() |
boolean |
isContinue() |
EContinue |
or(IContinueIndicator aContinue) |
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.
|
public 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.public boolean isBreak()
isBreak in interface IContinueIndicatortrue to break and false to continue.@Nonnull public EContinue or(@Nonnull IContinueIndicator aContinue)
@Nonnull public EContinue and(@Nonnull IContinueIndicator aContinue)
@Nonnull public static EContinue valueOf(@Nonnull IContinueIndicator aContinueIndicator)
Copyright © 2006–2015 phloc systems. All rights reserved.