Interface TypedData
-
- All Known Implementing Classes:
YamlTypedData
public interface TypedDataRepresents typed data, e.g., a parameter.- Author:
- Holger Eichelberger, SSE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns the description of the data.java.lang.StringgetName()Returns the name of the data.java.lang.StringgetType()Returns the type of the data.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the data.- Returns:
- the name
-
getDescription
java.lang.String getDescription()
Returns the description of the data.- Returns:
- the description
-
getType
java.lang.String getType()
Returns the type of the data.- Returns:
- the type as qualified Java name
-
-