Interface Attribute
-
public interface Attribute
This interface represents an attribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Get the name.java.lang.String
getValue()
Get the first value.java.util.List<java.lang.String>
getValues()
Get the values.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Get the name.- Returns:
- The name.
-
getValue
java.lang.String getValue()
Get the first value.- Returns:
- The first value.
-
getValues
java.util.List<java.lang.String> getValues()
Get the values. If the attribute has no value, this method returns an empty list.- Returns:
- The values.
-
-