public enum Product extends Enum<Product>
Modifier and Type | Method and Description |
---|---|
String |
toString()
Overridden to return the product name.
|
static Product |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product OFFICE
public static final Product SITE
public static final Product ANYWHERE
public static Product[] values()
for (Product c : Product.values()) System.out.println(c);
public static Product 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 © 2019 Solibri, Inc.. All rights reserved.