Package springfox.documentation.schema
Class CodeGenGenericTypeNamingStrategy
- java.lang.Object
-
- springfox.documentation.schema.CodeGenGenericTypeNamingStrategy
-
- All Implemented Interfaces:
GenericTypeNamingStrategy
public class CodeGenGenericTypeNamingStrategy extends java.lang.Object implements GenericTypeNamingStrategy
-
-
Constructor Summary
Constructors Constructor Description CodeGenGenericTypeNamingStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCloseGeneric()
java.lang.String
getOpenGeneric()
java.lang.String
getTypeListDelimiter()
-
-
-
Method Detail
-
getOpenGeneric
public java.lang.String getOpenGeneric()
- Specified by:
getOpenGeneric
in interfaceGenericTypeNamingStrategy
- Returns:
- the string used to denote the beginning of a generic i.e. the < in List<String>
-
getCloseGeneric
public java.lang.String getCloseGeneric()
- Specified by:
getCloseGeneric
in interfaceGenericTypeNamingStrategy
- Returns:
- the string used to denote the beginning of a generic i.e. the > in List<String>
-
getTypeListDelimiter
public java.lang.String getTypeListDelimiter()
- Specified by:
getTypeListDelimiter
in interfaceGenericTypeNamingStrategy
- Returns:
- the string used to denote the beginning of a generic i.e. the , in Map<String,String>
-
-