public static enum IPort.PortType extends java.lang.Enum<IPort.PortType>
| Enum Constant | Description |
|---|---|
ITEM_INSTANCE |
Port containing PIM item instances.
|
SUPPLEMENTAL_INSTANCE |
Port containing supplemental instances.
|
| Modifier and Type | Method | Description |
|---|---|---|
static IPort.PortType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IPort.PortType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPort.PortType ITEM_INSTANCE
public static final IPort.PortType SUPPLEMENTAL_INSTANCE
public static IPort.PortType[] values()
for (IPort.PortType c : IPort.PortType.values()) System.out.println(c);
public static IPort.PortType 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 null