public static enum OrgPolicyReport.ResultType extends java.lang.Enum<OrgPolicyReport.ResultType>
ResultType is used for the overall result| Enum Constant and Description |
|---|
ERROR
An entry of this type indicates an error in the OrgPolicy that prevents
it from being resolvable.
|
INFO
An entry of this type contains even less urgent information and could
e.g. indicate on how the OrgPolicy might be improved.
|
OK
There's usually no need to have entries with this type, as the
OrgPolicyReports main purpose is to report errors, potential
problems and maybe other information on how the OrgPolicy might be
improved. |
WARNING
An entry of this type indicates a potential problem (like referenced IDs
that don't exist) or points to elements that can't be checked because of
previous errors.
|
| Modifier and Type | Method and Description |
|---|---|
static OrgPolicyReport.ResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OrgPolicyReport.ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrgPolicyReport.ResultType OK
OrgPolicyReports main purpose is to report errors, potential
problems and maybe other information on how the OrgPolicy might be
improved. Usually only thepublic static final OrgPolicyReport.ResultType INFO
public static final OrgPolicyReport.ResultType WARNING
public static final OrgPolicyReport.ResultType ERROR
public static OrgPolicyReport.ResultType[] values()
for (OrgPolicyReport.ResultType c : OrgPolicyReport.ResultType.values()) System.out.println(c);
public static OrgPolicyReport.ResultType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null