android.databinding.tool.util
Enum GenerationalClassUtil.ExtensionFilter

java.lang.Object
  extended by java.lang.Enum<GenerationalClassUtil.ExtensionFilter>
      extended by android.databinding.tool.util.GenerationalClassUtil.ExtensionFilter
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GenerationalClassUtil.ExtensionFilter>
Enclosing class:
GenerationalClassUtil

public static enum GenerationalClassUtil.ExtensionFilter
extends java.lang.Enum<GenerationalClassUtil.ExtensionFilter>


Enum Constant Summary
BR
           
LAYOUT
           
SETTER_STORE
           
 
Method Summary
 boolean accept(java.lang.String entryName)
           
 java.lang.String getExtension()
           
static GenerationalClassUtil.ExtensionFilter valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GenerationalClassUtil.ExtensionFilter[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BR

public static final GenerationalClassUtil.ExtensionFilter BR

LAYOUT

public static final GenerationalClassUtil.ExtensionFilter LAYOUT

SETTER_STORE

public static final GenerationalClassUtil.ExtensionFilter SETTER_STORE
Method Detail

values

public static GenerationalClassUtil.ExtensionFilter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GenerationalClassUtil.ExtensionFilter c : GenerationalClassUtil.ExtensionFilter.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GenerationalClassUtil.ExtensionFilter valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

accept

public boolean accept(java.lang.String entryName)

getExtension

public java.lang.String getExtension()