com.alee.laf.filechooser
Enum WebFileChooserPanel.UpdateSource

java.lang.Object
  extended by java.lang.Enum<WebFileChooserPanel.UpdateSource>
      extended by com.alee.laf.filechooser.WebFileChooserPanel.UpdateSource
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WebFileChooserPanel.UpdateSource>
Enclosing class:
WebFileChooserPanel

protected static enum WebFileChooserPanel.UpdateSource
extends java.lang.Enum<WebFileChooserPanel.UpdateSource>

This enumeration represents the type of source that caused view update.


Enum Constant Summary
history
          History action source.
list
          Files list source.
other
          Other source.
path
          Path field source.
table
          Files table source.
toolbar
          Toolbar button source.
tree
          Files tree source.
 
Method Summary
static WebFileChooserPanel.UpdateSource valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WebFileChooserPanel.UpdateSource[] 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

path

public static final WebFileChooserPanel.UpdateSource path
Path field source.


tree

public static final WebFileChooserPanel.UpdateSource tree
Files tree source.


list

public static final WebFileChooserPanel.UpdateSource list
Files list source.


table

public static final WebFileChooserPanel.UpdateSource table
Files table source.


toolbar

public static final WebFileChooserPanel.UpdateSource toolbar
Toolbar button source.


history

public static final WebFileChooserPanel.UpdateSource history
History action source.


other

public static final WebFileChooserPanel.UpdateSource other
Other source.

Method Detail

values

public static WebFileChooserPanel.UpdateSource[] 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 (WebFileChooserPanel.UpdateSource c : WebFileChooserPanel.UpdateSource.values())
    System.out.println(c);

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

valueOf

public static WebFileChooserPanel.UpdateSource 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