public enum AECableSize extends java.lang.Enum<AECableSize>
| Modifier and Type | Method and Description |
|---|---|
static AECableSize |
max(AECableSize a,
AECableSize b) |
static AECableSize |
min(AECableSize a,
AECableSize b) |
static AECableSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AECableSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AECableSize NONE
public static final AECableSize NORMAL
public static final AECableSize DENSE
public static AECableSize[] values()
for (AECableSize c : AECableSize.values()) System.out.println(c);
public static AECableSize 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 nullpublic static AECableSize min(AECableSize a, AECableSize b)
public static AECableSize max(AECableSize a, AECableSize b)