Enum AdaptiveResolutionStrategy.AdaptiveState
Object
Enum<AdaptiveResolutionStrategy.AdaptiveState>
gudusoft.gsqlparser.resolver2.iterative.AdaptiveResolutionStrategy.AdaptiveState
- All Implemented Interfaces:
Serializable,Comparable<AdaptiveResolutionStrategy.AdaptiveState>,java.lang.constant.Constable
- Enclosing class:
- AdaptiveResolutionStrategy
public static enum AdaptiveResolutionStrategy.AdaptiveState
extends Enum<AdaptiveResolutionStrategy.AdaptiveState>
Adaptive states.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAggressive: maximum inference and expansionConservative: minimal inference and expansionNormal: standard inference and expansion -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CONSERVATIVE
Conservative: minimal inference and expansion -
NORMAL
Normal: standard inference and expansion -
AGGRESSIVE
Aggressive: maximum inference and expansion
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-