public static enum ButterKnife.Finder extends java.lang.Enum<ButterKnife.Finder>
| Modifier and Type | Method and Description |
|---|---|
static <T extends android.view.View> |
arrayOf(T... views) |
abstract android.view.View |
findOptionalView(java.lang.Object source,
int id) |
android.view.View |
findRequiredView(java.lang.Object source,
int id,
java.lang.String who) |
static <T extends android.view.View> |
listOf(T... views) |
static ButterKnife.Finder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ButterKnife.Finder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ButterKnife.Finder VIEW
public static final ButterKnife.Finder ACTIVITY
public static final ButterKnife.Finder DIALOG
public static ButterKnife.Finder[] values()
for (ButterKnife.Finder c : ButterKnife.Finder.values()) System.out.println(c);
public static ButterKnife.Finder 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 nullpublic static <T extends android.view.View> T[] arrayOf(T... views)
public static <T extends android.view.View> java.util.List<T> listOf(T... views)
public android.view.View findRequiredView(java.lang.Object source,
int id,
java.lang.String who)
public abstract android.view.View findOptionalView(java.lang.Object source,
int id)
Copyright © 2013-2014. All Rights Reserved.