Enum SmallRyeOpenApiConfig.OperationIdStrategy
- java.lang.Object
-
- java.lang.Enum<SmallRyeOpenApiConfig.OperationIdStrategy>
-
- io.quarkus.smallrye.openapi.common.deployment.SmallRyeOpenApiConfig.OperationIdStrategy
-
- All Implemented Interfaces:
Serializable,Comparable<SmallRyeOpenApiConfig.OperationIdStrategy>
- Enclosing class:
- SmallRyeOpenApiConfig
public static enum SmallRyeOpenApiConfig.OperationIdStrategy extends Enum<SmallRyeOpenApiConfig.OperationIdStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASS_METHODMETHODPACKAGE_CLASS_METHOD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SmallRyeOpenApiConfig.OperationIdStrategyvalueOf(String name)Returns the enum constant of this type with the specified name.static SmallRyeOpenApiConfig.OperationIdStrategy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METHOD
public static final SmallRyeOpenApiConfig.OperationIdStrategy METHOD
-
CLASS_METHOD
public static final SmallRyeOpenApiConfig.OperationIdStrategy CLASS_METHOD
-
PACKAGE_CLASS_METHOD
public static final SmallRyeOpenApiConfig.OperationIdStrategy PACKAGE_CLASS_METHOD
-
-
Method Detail
-
values
public static SmallRyeOpenApiConfig.OperationIdStrategy[] 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 (SmallRyeOpenApiConfig.OperationIdStrategy c : SmallRyeOpenApiConfig.OperationIdStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SmallRyeOpenApiConfig.OperationIdStrategy 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
-
-