public static enum LithoRecylerView.TouchInterceptor.Result extends Enum<LithoRecylerView.TouchInterceptor.Result>
| Enum Constant and Description |
|---|
CALL_SUPER
Returns super.onInterceptTouchEvent()
|
IGNORE_TOUCH_EVENT
Return false without calling super.onInterceptTouchEvent()
|
INTERCEPT_TOUCH_EVENT
Return true without calling super.onInterceptTouchEvent()
|
| Modifier and Type | Method and Description |
|---|---|
static LithoRecylerView.TouchInterceptor.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LithoRecylerView.TouchInterceptor.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LithoRecylerView.TouchInterceptor.Result INTERCEPT_TOUCH_EVENT
public static final LithoRecylerView.TouchInterceptor.Result IGNORE_TOUCH_EVENT
public static final LithoRecylerView.TouchInterceptor.Result CALL_SUPER
public static LithoRecylerView.TouchInterceptor.Result[] values()
for (LithoRecylerView.TouchInterceptor.Result c : LithoRecylerView.TouchInterceptor.Result.values()) System.out.println(c);
public static LithoRecylerView.TouchInterceptor.Result 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 null