Class ComponentAttribute
- java.lang.Object
-
- io.streamthoughts.azkarra.api.components.ComponentAttribute
-
public class ComponentAttribute extends Object
-
-
Constructor Summary
Constructors Constructor Description ComponentAttribute(String name)
Creates a newComponentAttribute
instance.ComponentAttribute(String name, Map<String,Object> values, Map<String,Object> defaultValues)
Creates a newComponentAttribute
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(String member, Object value)
void
add(String member, Object value, Object defaultValue)
boolean
contains(String member)
boolean
contains(String member, Object value)
boolean
equals(Object o)
int
hashCode()
String
name()
String
stringValue(String member)
String
toString()
Object
value(String member)
-
-
-
Constructor Detail
-
ComponentAttribute
public ComponentAttribute(String name)
Creates a newComponentAttribute
instance.- Parameters:
name
- the attribute name.
-
-