Package com._1c.g5.v8.dt.qw.ui.utils
Enum QueryTextResultProcessing.ArrangeAttributes
- java.lang.Object
-
- java.lang.Enum<QueryTextResultProcessing.ArrangeAttributes>
-
- com._1c.g5.v8.dt.qw.ui.utils.QueryTextResultProcessing.ArrangeAttributes
-
- All Implemented Interfaces:
Serializable
,Comparable<QueryTextResultProcessing.ArrangeAttributes>
- Enclosing class:
- QueryTextResultProcessing
public static enum QueryTextResultProcessing.ArrangeAttributes extends Enum<QueryTextResultProcessing.ArrangeAttributes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AlongWithGroupings
InSeparateColumn
InSeparateColumns
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QueryTextResultProcessing.ArrangeAttributes
valueOf(String name)
Returns the enum constant of this type with the specified name.static QueryTextResultProcessing.ArrangeAttributes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AlongWithGroupings
public static final QueryTextResultProcessing.ArrangeAttributes AlongWithGroupings
-
InSeparateColumns
public static final QueryTextResultProcessing.ArrangeAttributes InSeparateColumns
-
InSeparateColumn
public static final QueryTextResultProcessing.ArrangeAttributes InSeparateColumn
-
-
Method Detail
-
values
public static QueryTextResultProcessing.ArrangeAttributes[] 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 (QueryTextResultProcessing.ArrangeAttributes c : QueryTextResultProcessing.ArrangeAttributes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueryTextResultProcessing.ArrangeAttributes 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
-
-