public enum LinkAccessTypeEnum extends Enum<LinkAccessTypeEnum>
| Enum Constant and Description |
|---|
BROADCAST
Represents broadcast.
|
NON_BROADCAST_MULTIACCESS
Represents non-broadcast-multiaccess.
|
POINT_TO_MULTIPOINT
Represents point-to-multipoint.
|
POINT_TO_POINT
Represents point-to-point.
|
| Modifier and Type | Method and Description |
|---|---|
int |
linkAccessTypeEnum()
Returns the attribute linkAccessTypeEnum.
|
static LinkAccessTypeEnum |
of(int value)
Returns the object of linkAccessTypeEnum for.
|
static LinkAccessTypeEnum |
of(String value)
Returns the object of linkAccessTypeEnum for.
|
String |
toString() |
static LinkAccessTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkAccessTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkAccessTypeEnum BROADCAST
public static final LinkAccessTypeEnum NON_BROADCAST_MULTIACCESS
public static final LinkAccessTypeEnum POINT_TO_MULTIPOINT
public static final LinkAccessTypeEnum POINT_TO_POINT
public static LinkAccessTypeEnum[] values()
for (LinkAccessTypeEnum c : LinkAccessTypeEnum.values()) System.out.println(c);
public static LinkAccessTypeEnum 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 LinkAccessTypeEnum of(int value)
value - value of linkAccessTypeEnum forpublic static LinkAccessTypeEnum of(String value)
value - value of linkAccessTypeEnum forpublic int linkAccessTypeEnum()
public String toString()
toString in class Enum<LinkAccessTypeEnum>Copyright © 2018. All rights reserved.