Package com._1c.g5.v8.dt.dcs.ui.settings
Enum IDcsSettingsProvider.TabKind
- java.lang.Object
-
- java.lang.Enum<IDcsSettingsProvider.TabKind>
-
- com._1c.g5.v8.dt.dcs.ui.settings.IDcsSettingsProvider.TabKind
-
- All Implemented Interfaces:
Serializable
,Comparable<IDcsSettingsProvider.TabKind>
- Enclosing interface:
- IDcsSettingsProvider
public static enum IDcsSettingsProvider.TabKind extends Enum<IDcsSettingsProvider.TabKind>
Kind of settings tab
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONDITIONAL_APPEARANCE
FILTER_GROUPING
FILTER_REPORT
GROUPING_FIELDS
ORDER
OUTPUT
PARAMETERS
SELECTED_FIELDS
USER_FIELDS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IDcsSettingsProvider.TabKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static IDcsSettingsProvider.TabKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAMETERS
public static final IDcsSettingsProvider.TabKind PARAMETERS
-
GROUPING_FIELDS
public static final IDcsSettingsProvider.TabKind GROUPING_FIELDS
-
SELECTED_FIELDS
public static final IDcsSettingsProvider.TabKind SELECTED_FIELDS
-
FILTER_REPORT
public static final IDcsSettingsProvider.TabKind FILTER_REPORT
-
FILTER_GROUPING
public static final IDcsSettingsProvider.TabKind FILTER_GROUPING
-
ORDER
public static final IDcsSettingsProvider.TabKind ORDER
-
CONDITIONAL_APPEARANCE
public static final IDcsSettingsProvider.TabKind CONDITIONAL_APPEARANCE
-
USER_FIELDS
public static final IDcsSettingsProvider.TabKind USER_FIELDS
-
OUTPUT
public static final IDcsSettingsProvider.TabKind OUTPUT
-
-
Method Detail
-
values
public static IDcsSettingsProvider.TabKind[] 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 (IDcsSettingsProvider.TabKind c : IDcsSettingsProvider.TabKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IDcsSettingsProvider.TabKind 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
-
-