public enum FibreChannelPortType extends Enum<FibreChannelPortType>
| Enum Constant and Description |
|---|
fabric |
loop |
pointToPoint |
unknown |
| Modifier and Type | Method and Description |
|---|---|
static FibreChannelPortType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FibreChannelPortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FibreChannelPortType fabric
public static final FibreChannelPortType loop
public static final FibreChannelPortType pointToPoint
public static final FibreChannelPortType unknown
public static FibreChannelPortType[] values()
for (FibreChannelPortType c : FibreChannelPortType.values()) System.out.println(c);
public static FibreChannelPortType 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 © 2011-2012. All Rights Reserved.