Class YamlField
- java.lang.Object
-
- de.iip_ecosphere.platform.services.spring.yaml.YamlField
-
-
Constructor Summary
Constructors Constructor Description YamlField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Returns the name of the data.java.lang.StringgetType()Returns the type of the data.voidsetName(java.lang.String name)Defines the name of the attribute.voidsetType(java.lang.String type)Defines the type of the attribute.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:FieldReturns the name of the data.
-
getType
public java.lang.String getType()
Description copied from interface:FieldReturns the type of the data.
-
setName
public void setName(java.lang.String name)
Defines the name of the attribute. [required by SnakeYaml]- Parameters:
name- the name
-
setType
public void setType(java.lang.String type)
Defines the type of the attribute. [required by SnakeYaml]- Parameters:
type- the type as qualified Java name
-
-