Package oracle.dbtools.plugin.api.types
Enum Class TypeQualifier.MatchingMode
java.lang.Object
java.lang.Enum<TypeQualifier.MatchingMode>
oracle.dbtools.plugin.api.types.TypeQualifier.MatchingMode
- All Implemented Interfaces:
Serializable,Comparable<TypeQualifier.MatchingMode>,Constable
- Enclosing interface:
- TypeQualifier<T>
Determines how the
TypeQualifier matches types-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMatches any type providing the requested type, ignores anyNamedconstraint on the typeMatches the exact named type onlyMatches any type that provides the requested type -
Method Summary
Modifier and TypeMethodDescriptionstatic TypeQualifier.MatchingModeReturns the enum constant of this class with the specified name.static TypeQualifier.MatchingMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANY_PROVIDER
Matches any type providing the requested type, ignores anyNamedconstraint on the type -
EXACT_TYPE
Matches the exact named type only -
PROVIDER
Matches any type that provides the requested type
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-