public abstract class BaseModel<O extends BaseOptionModel> extends Object
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
deprecated |
protected String |
deprecationNote |
protected String |
description |
protected String |
firstVersion |
protected String |
javaType |
protected String |
label |
protected String |
name |
protected List<O> |
options |
protected String |
title |
| Constructor and Description |
|---|
BaseModel() |
| Modifier and Type | Method and Description |
|---|---|
void |
addOption(O option) |
static Comparator<BaseModel<?>> |
compareTitle() |
String |
getDeprecationNote() |
String |
getDescription() |
String |
getFirstVersion() |
String |
getFirstVersionShort() |
String |
getJavaType() |
abstract String |
getKind() |
String |
getLabel() |
String |
getName() |
List<O> |
getOptions() |
String |
getShortJavaType() |
String |
getTitle() |
boolean |
isDeprecated() |
void |
setDeprecated(boolean deprecated) |
void |
setDeprecationNote(String deprecationNote) |
void |
setDescription(String description) |
void |
setFirstVersion(String firstVersion) |
void |
setJavaType(String javaType) |
void |
setLabel(String label) |
void |
setName(String name) |
void |
setTitle(String title) |
protected String name
protected String title
protected String description
protected String firstVersion
protected String javaType
protected String label
protected boolean deprecated
protected String deprecationNote
protected final List<O extends BaseOptionModel> options
public static Comparator<BaseModel<?>> compareTitle()
public abstract String getKind()
public String getName()
public void setName(String name)
public String getTitle()
public void setTitle(String title)
public String getDescription()
public void setDescription(String description)
public String getFirstVersion()
public void setFirstVersion(String firstVersion)
public String getLabel()
public void setLabel(String label)
public boolean isDeprecated()
public void setDeprecated(boolean deprecated)
public String getDeprecationNote()
public void setDeprecationNote(String deprecationNote)
public String getJavaType()
public void setJavaType(String javaType)
public void addOption(O option)
public String getShortJavaType()
public String getFirstVersionShort()
Apache Camel