public enum LinkUse extends Enum<LinkUse>
| Enum Constant and Description | 
|---|
OPTIONAL
Not required, install only when asked. 
 | 
RECOMMENDED
Not absolutely required, but install the software unless directed not to. 
 | 
REQUIRED
The [Link]'d software is absolutely required for installation. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static LinkUse | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LinkUse[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LinkUse REQUIRED
public static final LinkUse RECOMMENDED
public static final LinkUse OPTIONAL
public static LinkUse[] values()
for (LinkUse c : LinkUse.values()) System.out.println(c);
public static LinkUse 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 © 2020 National Institute of Standards and Technology. All rights reserved.