Class BaseDictionaryType
- java.lang.Object
-
- com.flowable.platform.engine.impl.repository.datadictionary.model.BaseDictionaryType
-
- All Implemented Interfaces:
DictionaryType
- Direct Known Subclasses:
BaseArrayDictionaryType
,BaseObjectDictionaryType
public class BaseDictionaryType extends Object implements DictionaryType
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,Constraint>
constraints
protected String
description
protected String
example
protected String
type
protected String
typeName
-
Constructor Summary
Constructors Constructor Description BaseDictionaryType()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BaseDictionaryType
forType(String type)
Collection<Constraint>
getConstraints()
Map<String,Constraint>
getConstraintsMap()
String
getDescription()
String
getExample()
String
getType()
String
getTypeName()
void
setConstraints(Map<String,Constraint> constraints)
void
setDescription(String description)
void
setExample(String example)
void
setType(String type)
void
setTypeName(String typeName)
String
toString()
-
-
-
Method Detail
-
getTypeName
public String getTypeName()
- Specified by:
getTypeName
in interfaceDictionaryType
-
setTypeName
public void setTypeName(String typeName)
-
getType
public String getType()
- Specified by:
getType
in interfaceDictionaryType
-
setType
public void setType(String type)
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceDictionaryType
-
setDescription
public void setDescription(String description)
-
getExample
public String getExample()
- Specified by:
getExample
in interfaceDictionaryType
-
setExample
public void setExample(String example)
-
getConstraints
public Collection<Constraint> getConstraints()
- Specified by:
getConstraints
in interfaceDictionaryType
-
getConstraintsMap
public Map<String,Constraint> getConstraintsMap()
-
setConstraints
public void setConstraints(Map<String,Constraint> constraints)
-
forType
public static BaseDictionaryType forType(String type)
-
-