public static enum GlobalTrack.Type extends java.lang.Enum<GlobalTrack.Type>
| Enum Constant and Description |
|---|
paint
涂鸦
|
tail_watermark
尾部水印
|
watermark
全局水印
|
| Modifier and Type | Method and Description |
|---|---|
static GlobalTrack.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GlobalTrack.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalTrack.Type paint
public static final GlobalTrack.Type watermark
public static final GlobalTrack.Type tail_watermark
public static GlobalTrack.Type[] values()
for (GlobalTrack.Type c : GlobalTrack.Type.values()) System.out.println(c);
public static GlobalTrack.Type 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