public enum LogoPosition extends java.lang.Enum<LogoPosition>
| Enum Constant and Description |
|---|
logoPostionCenterBottom
屏幕中下位置
|
logoPostionCenterTop
屏幕中上位置
|
logoPostionleftBottom
屏幕左下位置
|
logoPostionleftTop
屏幕左上位置
|
logoPostionRightBottom
屏幕右下位置
|
logoPostionRightTop
屏幕右上位置
|
| Modifier and Type | Method and Description |
|---|---|
static LogoPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogoPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogoPosition logoPostionleftBottom
public static final LogoPosition logoPostionleftTop
public static final LogoPosition logoPostionCenterBottom
public static final LogoPosition logoPostionCenterTop
public static final LogoPosition logoPostionRightBottom
public static final LogoPosition logoPostionRightTop
public static LogoPosition[] values()
for (LogoPosition c : LogoPosition.values()) System.out.println(c);
public static LogoPosition 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