Class PropertyMetadata
- java.lang.Object
-
- io.micronaut.inject.configuration.PropertyMetadata
-
- All Implemented Interfaces:
io.micronaut.core.io.Streamable
,io.micronaut.core.io.Writable
public class PropertyMetadata extends java.lang.Object implements io.micronaut.core.io.Writable
Metadata about a property.
-
-
Constructor Summary
Constructors Constructor Description PropertyMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDeclaringType()
java.lang.String
getDefaultValue()
java.lang.String
getDescription()
java.lang.String
getName()
java.lang.String
getPath()
java.lang.String
getType()
java.lang.String
toString()
void
writeTo(java.io.Writer out)
-
-
-
Method Detail
-
getType
public java.lang.String getType()
- Returns:
- The type
-
getName
public java.lang.String getName()
- Returns:
- The name
-
getDescription
public java.lang.String getDescription()
- Returns:
- The description
-
getPath
public java.lang.String getPath()
- Returns:
- The path
-
getDefaultValue
public java.lang.String getDefaultValue()
- Returns:
- The default value
-
getDeclaringType
public java.lang.String getDeclaringType()
- Returns:
- The declaring type
-
writeTo
public void writeTo(java.io.Writer out) throws java.io.IOException
- Specified by:
writeTo
in interfaceio.micronaut.core.io.Writable
- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-