public enum CopyrightLogoPosition extends java.lang.Enum<CopyrightLogoPosition>
Enum Constant and Description |
---|
BOTTOM_CENTER
The copyright logo is positioned at the bottom-center portion of the display view.
|
TOP_CENTER
The copyright logo is positioned at the top-center portion of the display view.
|
TOP_LEFT
The copyright logo is positioned at the top-left portion of the display view.
|
TOP_RIGHT
The copyright logo is positioned at the top-right portion of the display view.
|
Modifier and Type | Method and Description |
---|---|
static CopyrightLogoPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CopyrightLogoPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyrightLogoPosition TOP_LEFT
public static final CopyrightLogoPosition TOP_CENTER
public static final CopyrightLogoPosition TOP_RIGHT
public static final CopyrightLogoPosition BOTTOM_CENTER
public static CopyrightLogoPosition[] values()
for (CopyrightLogoPosition c : CopyrightLogoPosition.values()) System.out.println(c);
public static CopyrightLogoPosition 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