com.semarchy.mdm.runtime.model.logical
Enum FieldDisplayType

java.lang.Object
  extended by java.lang.Enum<FieldDisplayType>
      extended by com.semarchy.mdm.runtime.model.logical.FieldDisplayType
All Implemented Interfaces:
Serializable, Comparable<FieldDisplayType>

public enum FieldDisplayType
extends Enum<FieldDisplayType>


Enum Constant Summary
BINARY
          Binary: Display Binary attribute as embedded content.
BINARY_POPUP
          Binary Popup: Display Binary attribute as embedded content in a popup.
CHECKBOX
          Checkbox: Display attribute value as a checkbox.
COMPLEX
          Complex: Display complex attribute.
DATE
          Date: Display attribute value as a date picker.
EMBEDDED_TEXT
          Embedded Text: Display attribute as embedded text.
EMBEDDED_TEXT_POPUP
          Embedded Text Popup: Display attribute as embedded text in a popup.
EMBEDDED_URL
          Embedded URL: Display the ressource referred to by the attribute value as embedded content.
HYPERLINK
          Hyperlink: Display attribute value as a clickable hyperlink.
ID_AUTO
          ID Auto: Display ID attribute as an automatically set value.
ID_GENERATED
          ID Generated: Display ID attribute as a generated value.
ID_MANUAL
          ID Manual: Display ID attribute as a manually set value.
IMAGE
          Image: Display attribute value as an image.
IMAGE_POPUP
          Image Popup: Display attribute value as an image in a popup.
IMAGE_URL
          Image URL: Display attribute value as an image.
IMAGE_URL_POPUP
          Image URL Popup: Display attribute value as an image in a popup.
LONG_TEXT
          Long Text: Display attribute value as a long text.
LOV_COMBO
          List of Values in Combo box: Display a LOV attribute as a list of values in a Combo box.
LOV_LIST
          List of Values: Display a LOV attribute as a list of values.
LOV_MULTI
          Multi Valued LOV: Display a MultiLOV attribute.
LOV_MULTI_LIST
          List of Multi Valued LOV: Display a MultiLOV attribute as a list of values.
REF_PICKER
          Reference Picker: Display attribute value as a reference picker.
TEXT
          Text: Display attribute value as a text.
 
Method Summary
static FieldDisplayType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FieldDisplayType[] 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

BINARY

public static final FieldDisplayType BINARY
Binary: Display Binary attribute as embedded content.


BINARY_POPUP

public static final FieldDisplayType BINARY_POPUP
Binary Popup: Display Binary attribute as embedded content in a popup.


CHECKBOX

public static final FieldDisplayType CHECKBOX
Checkbox: Display attribute value as a checkbox.


COMPLEX

public static final FieldDisplayType COMPLEX
Complex: Display complex attribute.


DATE

public static final FieldDisplayType DATE
Date: Display attribute value as a date picker.


EMBEDDED_TEXT

public static final FieldDisplayType EMBEDDED_TEXT
Embedded Text: Display attribute as embedded text.


EMBEDDED_TEXT_POPUP

public static final FieldDisplayType EMBEDDED_TEXT_POPUP
Embedded Text Popup: Display attribute as embedded text in a popup.


EMBEDDED_URL

public static final FieldDisplayType EMBEDDED_URL
Embedded URL: Display the ressource referred to by the attribute value as embedded content. The attribute value must be an URL.


HYPERLINK

public static final FieldDisplayType HYPERLINK
Hyperlink: Display attribute value as a clickable hyperlink.


ID_AUTO

public static final FieldDisplayType ID_AUTO
ID Auto: Display ID attribute as an automatically set value.


ID_GENERATED

public static final FieldDisplayType ID_GENERATED
ID Generated: Display ID attribute as a generated value.


ID_MANUAL

public static final FieldDisplayType ID_MANUAL
ID Manual: Display ID attribute as a manually set value.


IMAGE

public static final FieldDisplayType IMAGE
Image: Display attribute value as an image.


IMAGE_POPUP

public static final FieldDisplayType IMAGE_POPUP
Image Popup: Display attribute value as an image in a popup. The attribute value must be an URL.


IMAGE_URL

public static final FieldDisplayType IMAGE_URL
Image URL: Display attribute value as an image.


IMAGE_URL_POPUP

public static final FieldDisplayType IMAGE_URL_POPUP
Image URL Popup: Display attribute value as an image in a popup. The attribute value must be an URL.


LONG_TEXT

public static final FieldDisplayType LONG_TEXT
Long Text: Display attribute value as a long text.


LOV_COMBO

public static final FieldDisplayType LOV_COMBO
List of Values in Combo box: Display a LOV attribute as a list of values in a Combo box.


LOV_LIST

public static final FieldDisplayType LOV_LIST
List of Values: Display a LOV attribute as a list of values.


LOV_MULTI

public static final FieldDisplayType LOV_MULTI
Multi Valued LOV: Display a MultiLOV attribute.


LOV_MULTI_LIST

public static final FieldDisplayType LOV_MULTI_LIST
List of Multi Valued LOV: Display a MultiLOV attribute as a list of values.


REF_PICKER

public static final FieldDisplayType REF_PICKER
Reference Picker: Display attribute value as a reference picker.


TEXT

public static final FieldDisplayType TEXT
Text: Display attribute value as a text.

Method Detail

values

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

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

valueOf

public static FieldDisplayType 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 © 2015. All Rights Reserved.