Class ConfigurationMetadataProperty

    • Method Detail

      • getId

        public String getId()
        The full identifier of the property, in lowercase dashed form (e.g. my.group.simple-property)
        Returns:
        the property id
      • getName

        public String getName()
        The name of the property, in lowercase dashed form (e.g. simple-property). If this item does not belong to any group, the id is returned.
        Returns:
        the property name
      • getType

        public String getType()
        The class name of the data type of the property. For example, java.lang.String.

        For consistency, the type of a primitive is specified using its wrapper counterpart, i.e. boolean becomes java.lang.Boolean. If the type holds generic information, these are provided as well, i.e. a HashMap of String to Integer would be defined as java.util.HashMap <java.lang.String,java.lang.Integer>.

        Note that this class may be a complex type that gets converted from a String as values are bound.

        Returns:
        the property type
      • getHints

        public Hints getHints()
        Return the hints of this item.
        Returns:
        the hints
      • isDeprecated

        public boolean isDeprecated()
        Specify if the property is deprecated.
        Returns:
        if the property is deprecated
        See Also:
        getDeprecation()