Package de.xima.fc.gui.statics
Enum EFormShareProperty
- java.lang.Object
-
- java.lang.Enum<EFormShareProperty>
-
- de.xima.fc.gui.statics.EFormShareProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<EFormShareProperty>
public enum EFormShareProperty extends Enum<EFormShareProperty>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EFormShareProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static EFormShareProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHOW_CODE_EDITOR
public static final EFormShareProperty SHOW_CODE_EDITOR
-
SHOW_XFC_CHANGED_EVENT
public static final EFormShareProperty SHOW_XFC_CHANGED_EVENT
-
SHOW_IFRAME_SCROLLING
public static final EFormShareProperty SHOW_IFRAME_SCROLLING
-
SHOW_IFRAME_FRAMEBORDER
public static final EFormShareProperty SHOW_IFRAME_FRAMEBORDER
-
SHOW_IFRAME_HEIGHT
public static final EFormShareProperty SHOW_IFRAME_HEIGHT
-
SHOW_IFRAME_WIDTH
public static final EFormShareProperty SHOW_IFRAME_WIDTH
-
SHOW_IFRAME_ID
public static final EFormShareProperty SHOW_IFRAME_ID
-
SHOW_LINK_TARGET
public static final EFormShareProperty SHOW_LINK_TARGET
-
SHOW_LINK_TEXT
public static final EFormShareProperty SHOW_LINK_TEXT
-
SCRIPT_AJAX_AUTO
public static final EFormShareProperty SCRIPT_AJAX_AUTO
-
SHOW_USE_ID_LINK
public static final EFormShareProperty SHOW_USE_ID_LINK
-
SHOW_AJAX_AUTO
public static final EFormShareProperty SHOW_AJAX_AUTO
-
SHOW_AJAX_ASYNC
public static final EFormShareProperty SHOW_AJAX_ASYNC
-
SHOW_AJAX_CACHE
public static final EFormShareProperty SHOW_AJAX_CACHE
-
SHOW_FORM_CONTAINER_ID
public static final EFormShareProperty SHOW_FORM_CONTAINER_ID
-
SHOW_INCLUDE_JQUERY_FIRST
public static final EFormShareProperty SHOW_INCLUDE_JQUERY_FIRST
-
SHOW_RP_INLINE
public static final EFormShareProperty SHOW_RP_INLINE
-
SHOW_RP_THEME
public static final EFormShareProperty SHOW_RP_THEME
-
SHOW_RP_FORM_ONLY
public static final EFormShareProperty SHOW_RP_FORM_ONLY
-
SHOW_RP_USE_JQ
public static final EFormShareProperty SHOW_RP_USE_JQ
-
SHOW_RP_KEEP_ALIVE
public static final EFormShareProperty SHOW_RP_KEEP_ALIVE
-
SHOW_RP_USE_CSS
public static final EFormShareProperty SHOW_RP_USE_CSS
-
SHOW_RP_USE_UI
public static final EFormShareProperty SHOW_RP_USE_UI
-
SHOW_PP_SUCCESS_URL
public static final EFormShareProperty SHOW_PP_SUCCESS_URL
-
SHOW_PP_ERROR_URL
public static final EFormShareProperty SHOW_PP_ERROR_URL
-
SHOW_PP_USE_BASE_URL
public static final EFormShareProperty SHOW_PP_USE_BASE_URL
-
SHOW_LINKS
public static final EFormShareProperty SHOW_LINKS
-
-
Method Detail
-
values
public static EFormShareProperty[] 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 (EFormShareProperty c : EFormShareProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EFormShareProperty 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 nameNullPointerException
- if the argument is null
-
-