public enum ViewportProfile extends Enum<ViewportProfile>
Enum Constant and Description |
---|
HUB_LANDSCAPE_LARGE
Hub Landscape large.
|
HUB_LANDSCAPE_MEDIUM
Hub Landscape medium.
|
HUB_LANDSCAPE_SMALL
Hub Landscape small.
|
HUB_ROUND_SMALL
Hub Round small.
|
MOBILE_LANDSCAPE_MEDIUM
Mobile Landscape medium.
|
MOBILE_LANDSCAPE_SMALL
Mobile Landscape small.
|
MOBILE_PORTRAIT_MEDIUM
Mobile Portrait medium.
|
MOBILE_PORTRAIT_SMALL
Mobile Portrait small.
|
TV_LANDSCAPE_MEDIUM
TV landscape medium.
|
TV_LANDSCAPE_XLARGE
TV landscape XLarge.
|
TV_PORTRAIT_MEDIUM
TV Portrait medium.
|
UNKNOWN_VIEWPORT_PROFILE
Unknown viewport.
|
Modifier and Type | Method and Description |
---|---|
static ViewportProfile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewportProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewportProfile HUB_ROUND_SMALL
public static final ViewportProfile HUB_LANDSCAPE_SMALL
public static final ViewportProfile HUB_LANDSCAPE_MEDIUM
public static final ViewportProfile HUB_LANDSCAPE_LARGE
public static final ViewportProfile MOBILE_LANDSCAPE_SMALL
public static final ViewportProfile MOBILE_PORTRAIT_SMALL
public static final ViewportProfile MOBILE_LANDSCAPE_MEDIUM
public static final ViewportProfile MOBILE_PORTRAIT_MEDIUM
public static final ViewportProfile TV_LANDSCAPE_XLARGE
public static final ViewportProfile TV_PORTRAIT_MEDIUM
public static final ViewportProfile TV_LANDSCAPE_MEDIUM
public static final ViewportProfile UNKNOWN_VIEWPORT_PROFILE
public static ViewportProfile[] values()
for (ViewportProfile c : ViewportProfile.values()) System.out.println(c);
public static ViewportProfile 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 © 2021. All rights reserved.