Servoy 5.x Public API

com.servoy.j2db.dataui
Enum PropertyEditorOption

java.lang.Object
  extended by java.lang.Enum<PropertyEditorOption>
      extended by com.servoy.j2db.dataui.PropertyEditorOption
All Implemented Interfaces:
Serializable, Comparable<PropertyEditorOption>

public enum PropertyEditorOption
extends Enum<PropertyEditorOption>

Options for PropertyEditorHint hints.

Since:
5.0

Enum Constant Summary
includeAggregates
          Boolean option to include aggregates in the available values.
includeCalculations
          Boolean option to include calculations in the available values.
includeColumns
          Boolean option to include columns in the available values.
includeForm
          Boolean option to include form local data.
includeGlobal
          Boolean option to include global data.
includeNestedRelations
          Boolean option to include nested relations or nested related dataproviders.
includeNone
          Boolean option to include none in the available values.
includeRelatedAggregates
          Boolean option to include related aggregates in the available values.
includeRelatedCalculations
          Boolean option to include related calculations in the available values.
includeRelations
          Boolean option to include related dataproviders in the available values.
styleLookupName
          String setting for lookupName in PropertyEditorClass.styleclass property selection.
 
Method Summary
static PropertyEditorOption valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PropertyEditorOption[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

includeAggregates

public static final PropertyEditorOption includeAggregates
Boolean option to include aggregates in the available values. default: Boolean.TRUE


includeCalculations

public static final PropertyEditorOption includeCalculations
Boolean option to include calculations in the available values. default: Boolean.TRUE


includeColumns

public static final PropertyEditorOption includeColumns
Boolean option to include columns in the available values. default: Boolean.TRUE


includeForm

public static final PropertyEditorOption includeForm
Boolean option to include form local data. (e.g. form methods, form variables) in the available values, default: Boolean.TRUE


includeGlobal

public static final PropertyEditorOption includeGlobal
Boolean option to include global data. (e.g. global methods, global variables) in the available values, default: Boolean.TRUE


includeNestedRelations

public static final PropertyEditorOption includeNestedRelations
Boolean option to include nested relations or nested related dataproviders. (e.g. a_to_b.b_to_c.c_field) in the available values, default: Boolean.TRUE


includeNone

public static final PropertyEditorOption includeNone
Boolean option to include none in the available values. default: Boolean.TRUE


includeRelatedAggregates

public static final PropertyEditorOption includeRelatedAggregates
Boolean option to include related aggregates in the available values. default: Boolean.TRUE


includeRelatedCalculations

public static final PropertyEditorOption includeRelatedCalculations
Boolean option to include related calculations in the available values. default: Boolean.TRUE


includeRelations

public static final PropertyEditorOption includeRelations
Boolean option to include related dataproviders in the available values. default: Boolean.TRUE


styleLookupName

public static final PropertyEditorOption styleLookupName
String setting for lookupName in PropertyEditorClass.styleclass property selection.

Method Detail

valueOf

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

values

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

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

Copyright © 2010 Servoy B.V.