public interface Frame
Modifier and Type | Method and Description |
---|---|
void |
add(String key,
Object value)
Add a value to the existing values of a key.
|
boolean |
containsKey(String key)
Check whether or not a key is defined.
|
List<Object> |
get(String key)
Access a value in the frame.
|
String |
getID()
Access the ID of the frame.
|
Object |
getType()
Access the type of the frame.
|
Set<String> |
keySet()
Retrieve the set of all keys.
|
void |
set(String key,
List<Object> values)
Set the values of the key (previous values are erased).
|
void |
set(String key,
Object value)
Set the value of the key (previous values are erased).
|
void |
setID(String id)
Modify the type of the frame.
|
void |
setType(Object type)
Modify the type of the frame.
|
Object getType()
void setType(Object type)
String getID()
void setID(String id)
List<Object> get(String key)
void set(String key, List<Object> values)
boolean containsKey(String key)
Copyright © 2015 Pablo Duboue. All rights reserved.