public enum CompletionInfoType extends java.lang.Enum<CompletionInfoType>
| Enum Constant and Description |
|---|
HOSTED |
NON_HOSTED |
| Modifier and Type | Method and Description |
|---|---|
static CompletionInfoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompletionInfoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="hosted") public static final CompletionInfoType HOSTED
@SerializedName(value="non_hosted") public static final CompletionInfoType NON_HOSTED
public static CompletionInfoType[] values()
for (CompletionInfoType c : CompletionInfoType.values()) System.out.println(c);
public static CompletionInfoType 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