public static enum OpenApiConfig.OperationIdStrategy extends Enum<OpenApiConfig.OperationIdStrategy>
| Enum Constant and Description |
|---|
CLASS_METHOD |
METHOD |
PACKAGE_CLASS_METHOD |
| Modifier and Type | Method and Description |
|---|---|
static OpenApiConfig.OperationIdStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpenApiConfig.OperationIdStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenApiConfig.OperationIdStrategy METHOD
public static final OpenApiConfig.OperationIdStrategy CLASS_METHOD
public static final OpenApiConfig.OperationIdStrategy PACKAGE_CLASS_METHOD
public static OpenApiConfig.OperationIdStrategy[] values()
for (OpenApiConfig.OperationIdStrategy c : OpenApiConfig.OperationIdStrategy.values()) System.out.println(c);
public static OpenApiConfig.OperationIdStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2021. All rights reserved.