public enum SitePIPStatus extends Enum<SitePIPStatus>
| Modifier and Type | Field and Description | 
|---|---|
| static SitePIPStatus[] | values | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isFixed()Status marks PIP as fixed? | 
| boolean | isUsed()Status marks PIP as used? | 
| static SitePIPStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SitePIPStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SitePIPStatus OFF
public static final SitePIPStatus ON
public static final SitePIPStatus OFF_FIXED
public static final SitePIPStatus ON_FIXED
public static final SitePIPStatus[] values
public static SitePIPStatus[] values()
for (SitePIPStatus c : SitePIPStatus.values()) System.out.println(c);
public static SitePIPStatus 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 boolean isUsed()
public boolean isFixed()