public static enum LithoRecyclerView.TouchInterceptor.Result extends java.lang.Enum<LithoRecyclerView.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 LithoRecyclerView.TouchInterceptor.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LithoRecyclerView.TouchInterceptor.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LithoRecyclerView.TouchInterceptor.Result INTERCEPT_TOUCH_EVENT
public static final LithoRecyclerView.TouchInterceptor.Result IGNORE_TOUCH_EVENT
public static final LithoRecyclerView.TouchInterceptor.Result CALL_SUPER
public static LithoRecyclerView.TouchInterceptor.Result[] values()
for (LithoRecyclerView.TouchInterceptor.Result c : LithoRecyclerView.TouchInterceptor.Result.values()) System.out.println(c);
public static LithoRecyclerView.TouchInterceptor.Result 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