public enum UserTag extends Enum<UserTag>
| Enum Constant and Description |
|---|
ANALYSIS |
DELETED |
GOOD |
SCHEDULED |
TRASH |
| Modifier and Type | Method and Description |
|---|---|
int |
id() |
static UserTag |
valueOf(int tagId) |
static UserTag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserTag GOOD
public static final UserTag TRASH
public static final UserTag DELETED
public static final UserTag SCHEDULED
public static final UserTag ANALYSIS
public static UserTag[] values()
for (UserTag c : UserTag.values()) System.out.println(c);
public static UserTag 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 int id()
public static UserTag valueOf(int tagId)
Copyright © 2021. All rights reserved.