public enum TypesEnum extends Enum<TypesEnum>
| Enum Constant and Description |
|---|
FREQUENCY_DIVISION
Represents frequency-division.
|
SPACE_DIVISION
Represents space-division.
|
TIME_DIVISION
Represents time-division.
|
| Modifier and Type | Method and Description |
|---|---|
static TypesEnum |
of(int value)
Returns the object of typesEnum for.
|
static TypesEnum |
of(String value)
Returns the object of typesEnum for.
|
String |
toString() |
int |
typesEnum()
Returns the attribute typesEnum.
|
static TypesEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypesEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypesEnum SPACE_DIVISION
public static final TypesEnum FREQUENCY_DIVISION
public static final TypesEnum TIME_DIVISION
public static TypesEnum[] values()
for (TypesEnum c : TypesEnum.values()) System.out.println(c);
public static TypesEnum 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 static TypesEnum of(int value)
value - value of typesEnum forpublic static TypesEnum of(String value)
value - value of typesEnum forpublic int typesEnum()
Copyright © 2017. All rights reserved.