Package com.adbs.querybuilder
Enum CustomExpressionBuilderColumns
- java.lang.Object
- 
- java.lang.Enum<CustomExpressionBuilderColumns>
- 
- com.adbs.querybuilder.CustomExpressionBuilderColumns
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<CustomExpressionBuilderColumns>
 
 public enum CustomExpressionBuilderColumns extends java.lang.Enum<CustomExpressionBuilderColumns> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AggreagateAliasConditionsExpressionSortOrderSortType
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CustomExpressionBuilderColumnsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CustomExpressionBuilderColumns[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Expressionpublic static final CustomExpressionBuilderColumns Expression 
 - 
Aggreagatepublic static final CustomExpressionBuilderColumns Aggreagate 
 - 
Aliaspublic static final CustomExpressionBuilderColumns Alias 
 - 
SortTypepublic static final CustomExpressionBuilderColumns SortType 
 - 
SortOrderpublic static final CustomExpressionBuilderColumns SortOrder 
 - 
Conditionspublic static final CustomExpressionBuilderColumns Conditions 
 
- 
 - 
Method Detail- 
valuespublic static CustomExpressionBuilderColumns[] 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 (CustomExpressionBuilderColumns c : CustomExpressionBuilderColumns.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CustomExpressionBuilderColumns valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-