Package com.linecorp.armeria.server.docs
Enum FieldLocation
- All Implemented Interfaces:
Serializable
,Comparable<FieldLocation>
,java.lang.constant.Constable
@UnstableApi public enum FieldLocation extends Enum<FieldLocation>
The location of a field.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description BODY
The field is located in the request body.HEADER
The field is located in the header.PATH
The field is located in the path.QUERY
The field is located in the query.UNSPECIFIED
The location of the field is unspecified. -
Method Summary
Modifier and Type Method Description static FieldLocation
valueOf(String name)
Returns the enum constant of this type with the specified name.static FieldLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PATH
The field is located in the path. -
HEADER
The field is located in the header. -
QUERY
The field is located in the query. -
BODY
The field is located in the request body. -
UNSPECIFIED
The location of the field is unspecified.
-
-
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
-