public enum PortSplitMode extends Enum<PortSplitMode>
| Enum Constant and Description |
|---|
NotApplicable |
Unknown |
Unsplit |
| Modifier and Type | Method and Description |
|---|---|
static PortSplitMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PortSplitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortSplitMode NotApplicable
public static final PortSplitMode Unknown
public static final PortSplitMode Unsplit
public static PortSplitMode[] values()
for (PortSplitMode c : PortSplitMode.values()) System.out.println(c);
public static PortSplitMode 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 nullCopyright © 2016. All rights reserved.