public enum SuggestionQuality extends java.lang.Enum<SuggestionQuality>
| Enum Constant and Description |
|---|
EXCELLENT
100 percent of users and resources are available for the suggested meeting time.
|
FAIR
The maximum percentage of users and resources available for a suggested meeting time is equal to the GoodThreshold element value plus 50.
|
GOOD
The minimum percentage of users and resources available is equal to or greater than the GoodThreshold element value plus 50.
|
NONE
None.
|
POOR
Less than 50 percent of the users and resources are available for the suggested meeting time.
|
| Modifier and Type | Method and Description |
|---|---|
static SuggestionQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SuggestionQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuggestionQuality EXCELLENT
public static final SuggestionQuality GOOD
public static final SuggestionQuality FAIR
public static final SuggestionQuality POOR
public static final SuggestionQuality NONE
public static SuggestionQuality[] values()
for (SuggestionQuality c : SuggestionQuality.values()) System.out.println(c);
public static SuggestionQuality 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