public enum EChange extends Enum<EChange> implements IChangeIndicator
| Modifier and Type | Method and Description |
|---|---|
boolean |
isChanged() |
static EChange |
valueOf(boolean bChanged) |
static EChange |
valueOf(IChangeIndicator aChangeIndicator) |
static EChange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EChange[] |
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, and, isUnchanged, or, orpublic static final EChange CHANGED
public static final EChange UNCHANGED
public static EChange[] values()
for (EChange c : EChange.values()) System.out.println(c);
public static EChange 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 isChanged()
isChanged in interface IChangeIndicatortrue if changed and false if unchanged.@Nonnull public static EChange valueOf(@Nonnull IChangeIndicator aChangeIndicator)
Copyright © 2014–2019 Philip Helger. All rights reserved.