Class Parameter
- java.lang.Object
-
- io.vertx.reactivex.openapi.contract.Parameter
-
- All Implemented Interfaces:
RxDelegate
public class Parameter extends Object implements RxDelegate
This interface represents the most important attributes of an OpenAPI Parameter.
Parameter V3.1
Parameter V3.0NOTE: This class has been automatically generated from the
originalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Parameter>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ParametergetDelegate()LocationgetIn()StringgetName()JsonSchemagetSchema()SchemaTypegetSchemaType()StylegetStyle()inthashCode()booleanisExplode()booleanisRequired()static ParameternewInstance(Parameter arg)StringtoString()
-
-
-
Method Detail
-
getDelegate
public Parameter getDelegate()
- Specified by:
getDelegatein interfaceRxDelegate
-
getName
public String getName()
- Returns:
- name of this parameter
-
getIn
public Location getIn()
- Returns:
- location of this parameter
-
isRequired
public boolean isRequired()
- Returns:
- true if the parameter is required, otherwise false;
-
getStyle
public Style getStyle()
- Returns:
- style of this parameter
-
isExplode
public boolean isExplode()
- Returns:
- true if the parameter should become exploded, otherwise false;
-
getSchema
public JsonSchema getSchema()
- Returns:
- the of the parameter
-
getSchemaType
public SchemaType getSchemaType()
- Returns:
- the of the parameter
-
-