public static enum Guideline.Category extends Enum<Guideline.Category>
Enum Constant and Description |
---|
ADVISORY |
DISAPPLIED |
MANDATORY |
REQUIRED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static Guideline.Category |
fromString(String value) |
String |
toString() |
static Guideline.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Guideline.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Guideline.Category MANDATORY
public static final Guideline.Category REQUIRED
public static final Guideline.Category ADVISORY
public static final Guideline.Category DISAPPLIED
public static final Guideline.Category UNKNOWN
public static Guideline.Category[] values()
for (Guideline.Category c : Guideline.Category.values()) System.out.println(c);
public static Guideline.Category 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 String toString()
toString
in class Enum<Guideline.Category>
public static Guideline.Category fromString(String value)
Copyright © 2016–2019. All rights reserved.