public enum ECityWall extends java.lang.Enum<ECityWall>
| Enum Constant | Description |
|---|---|
EXTENDED_ONCE |
|
EXTENDED_TWICE |
|
NOT_EXTENDED |
| Modifier and Type | Method | Description |
|---|---|---|
static ECityWall |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ECityWall[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECityWall NOT_EXTENDED
public static final ECityWall EXTENDED_ONCE
public static final ECityWall EXTENDED_TWICE
public static ECityWall[] values()
for (ECityWall c : ECityWall.values()) System.out.println(c);
public static ECityWall valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2011-2018 Sahits GmbH. All Rights Reserved.