public enum SuggestedLabel extends Enum<SuggestedLabel>
| Enum Constant and Description |
|---|
Abuse |
Ads |
Illegal |
Normal |
Politics |
Porn |
Religion |
Sexy |
Teenager |
Terrorism |
| Modifier and Type | Method and Description |
|---|---|
static SuggestedLabel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuggestedLabel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuggestedLabel Normal
public static final SuggestedLabel Porn
public static final SuggestedLabel Terrorism
public static final SuggestedLabel Politics
public static final SuggestedLabel Ads
public static final SuggestedLabel Illegal
public static final SuggestedLabel Abuse
public static final SuggestedLabel Teenager
public static final SuggestedLabel Sexy
public static final SuggestedLabel Religion
public static SuggestedLabel[] values()
for (SuggestedLabel c : SuggestedLabel.values()) System.out.println(c);
public static SuggestedLabel 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 nullCopyright © 2023. All rights reserved.