public enum ProjectType extends Enum<ProjectType>
| Enum Constant and Description |
|---|
IMPORT_PLAYADVISOR |
IMPORT_PLAYMAPPING |
PLAYMAPPING_PLAYADVISOR |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(String s) |
String |
toString() |
static ProjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Playadvisor import") public static final ProjectType IMPORT_PLAYADVISOR
@SerializedName(value="Playmapping import") public static final ProjectType IMPORT_PLAYMAPPING
@SerializedName(value="Playadvisor en playmapping") public static final ProjectType PLAYMAPPING_PLAYADVISOR
public static ProjectType[] values()
for (ProjectType c : ProjectType.values()) System.out.println(c);
public static ProjectType 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<ProjectType>public boolean equals(String s)
Copyright © 2019. All rights reserved.