Interface ValueMetadata
-
- All Superinterfaces:
Metadata,NonNullMetadata
@ConsumerType public interface ValueMetadata extends NonNullMetadata
Metadata for a simpleStringvalue that will be type-converted if necessary before injecting.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetStringValue()Return the unconverted string representation of the value.java.lang.StringgetType()Return the name of the type to which the value should be converted.
-
-
-
Method Detail
-
getStringValue
java.lang.String getStringValue()
Return the unconverted string representation of the value. This is specified by thevalueattribute or text part of thevalueelement.- Returns:
- The unconverted string representation of the value.
-
getType
java.lang.String getType()
Return the name of the type to which the value should be converted. This is specified by thetypeattribute.- Returns:
- The name of the type to which the value should be converted or
nullif no type is specified.
-
-