public enum TeammateNameDisplay extends Enum<TeammateNameDisplay> implements HasCode<TeammateNameDisplay>
| Modifier and Type | Class and Description |
|---|---|
static class |
TeammateNameDisplay.TeammateNameDisplayDeserializer |
| Enum Constant and Description |
|---|
FullName |
NickNameFullName |
UserName |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
static TeammateNameDisplay |
of(String code) |
static TeammateNameDisplay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TeammateNameDisplay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeammateNameDisplay UserName
public static final TeammateNameDisplay NickNameFullName
public static final TeammateNameDisplay FullName
public static TeammateNameDisplay[] values()
for (TeammateNameDisplay c : TeammateNameDisplay.values()) System.out.println(c);
public static TeammateNameDisplay 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 static TeammateNameDisplay of(String code)
@Generated(value="lombok") public String getCode()
getCode in interface HasCode<TeammateNameDisplay>Copyright © 2019. All rights reserved.