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