com.im.ijc.widgets/1 5.9.1

com.im.ijc.widgets.common
Enum SpecialWidgetValue

java.lang.Object
  extended by java.lang.Enum<SpecialWidgetValue>
      extended by com.im.ijc.widgets.common.SpecialWidgetValue
All Implemented Interfaces:
Serializable, Comparable<SpecialWidgetValue>

public enum SpecialWidgetValue
extends Enum<SpecialWidgetValue>


Enum Constant Summary
EMPTY_SELECTION
          BROWSE: Some data in vertex state, but empty selection
MULTIPLE_QUERIES
          QUERY: the field takes part in more expression, so usually cannot be visualised
NO_DATA
          BROWSE: No data in vertex state
NOT_PART_OF_QUERY
          QUERY: the field is not part of the expression term
UNBOUND
          QUERY/BROWSE: Field is unbound
 
Method Summary
 String getDisplayName()
           
static SpecialWidgetValue valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SpecialWidgetValue[] 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

UNBOUND

public static final SpecialWidgetValue UNBOUND
QUERY/BROWSE: Field is unbound


NO_DATA

public static final SpecialWidgetValue NO_DATA
BROWSE: No data in vertex state


EMPTY_SELECTION

public static final SpecialWidgetValue EMPTY_SELECTION
BROWSE: Some data in vertex state, but empty selection


MULTIPLE_QUERIES

public static final SpecialWidgetValue MULTIPLE_QUERIES
QUERY: the field takes part in more expression, so usually cannot be visualised


NOT_PART_OF_QUERY

public static final SpecialWidgetValue NOT_PART_OF_QUERY
QUERY: the field is not part of the expression term

Method Detail

values

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

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

valueOf

public static SpecialWidgetValue 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

getDisplayName

public String getDisplayName()

com.im.ijc.widgets/1 5.9.1