public static enum Presenter.RevealType extends Enum<Presenter.RevealType>
Presenter.revealInParent()
.
Root will fire a RevealRootContentEvent
.
RootLayout will fire a RevealRootLayoutContentEvent
.
RootPopup will fire a RevealRootPopupContentEvent
.Enum Constant and Description |
---|
Root |
RootLayout |
RootPopup |
Modifier and Type | Method and Description |
---|---|
static Presenter.RevealType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Presenter.RevealType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Presenter.RevealType Root
public static final Presenter.RevealType RootLayout
public static final Presenter.RevealType RootPopup
public static Presenter.RevealType[] values()
for (Presenter.RevealType c : Presenter.RevealType.values()) System.out.println(c);
public static Presenter.RevealType 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 © 2010–2014 Arcbees. All rights reserved.