public enum ZoningPolicy extends Enum<ZoningPolicy>
Enum Constant and Description |
---|
NoZoning |
SingleInitiatorAllTargets |
SingleInitiatorSingleStorageSystem |
SingleInitiatorSingleTarget |
Unknown |
Modifier and Type | Method and Description |
---|---|
static ZoningPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZoningPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZoningPolicy NoZoning
public static final ZoningPolicy SingleInitiatorAllTargets
public static final ZoningPolicy SingleInitiatorSingleStorageSystem
public static final ZoningPolicy SingleInitiatorSingleTarget
public static final ZoningPolicy Unknown
public static ZoningPolicy[] values()
for (ZoningPolicy c : ZoningPolicy.values()) System.out.println(c);
public static ZoningPolicy 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.