org.kuali.student.core.assembly.data
Enum LookupMetadata.Widget

java.lang.Object
  extended by java.lang.Enum<LookupMetadata.Widget>
      extended by org.kuali.student.core.assembly.data.LookupMetadata.Widget
All Implemented Interfaces:
Serializable, Comparable<LookupMetadata.Widget>
Enclosing class:
LookupMetadata

public static enum LookupMetadata.Widget
extends Enum<LookupMetadata.Widget>


Enum Constant Summary
ADVANCED_LIGHTBOX
           
BUTTON
           
CHECKBOX_LIST
           
DROP_DOWN
           
NO_WIDGET
           
RADIO
           
SUGGEST_BOX
           
 
Method Summary
static LookupMetadata.Widget valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LookupMetadata.Widget[] 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

NO_WIDGET

public static final LookupMetadata.Widget NO_WIDGET

SUGGEST_BOX

public static final LookupMetadata.Widget SUGGEST_BOX

ADVANCED_LIGHTBOX

public static final LookupMetadata.Widget ADVANCED_LIGHTBOX

DROP_DOWN

public static final LookupMetadata.Widget DROP_DOWN

BUTTON

public static final LookupMetadata.Widget BUTTON

CHECKBOX_LIST

public static final LookupMetadata.Widget CHECKBOX_LIST

RADIO

public static final LookupMetadata.Widget RADIO
Method Detail

values

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

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

valueOf

public static LookupMetadata.Widget valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2007-2011 The Kuali Foundation. All Rights Reserved.