public class OCastRawDataLayer
Represents an OCast data layer containing raw parameters (i.e. the params property is a String).
| Constructor and Description |
|---|
OCastRawDataLayer(java.lang.String name,
java.lang.String params,
org.json.JSONObject options)
Creates an instance of
class OCastRawDataLayer. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
The name of the data.
|
org.json.JSONObject |
getOptions()
The options associated with this data,
|
java.lang.String |
getParams()
The raw data parameters.
|
void |
setName(java.lang.String p)
The name of the data.
|
public OCastRawDataLayer(@NotNull
java.lang.String name,
@NotNull
java.lang.String params,
@Nullable
org.json.JSONObject options)
Creates an instance of class OCastRawDataLayer.
name - The name of the data.params - The raw data parameters.options - The options associated with this data, if any.class OCastRawDataLayer@NotNull public java.lang.String getName()
The name of the data.
public void setName(@NotNull
java.lang.String p)
The name of the data.
p - The name of the data.@NotNull public java.lang.String getParams()
The raw data parameters.
@Nullable public org.json.JSONObject getOptions()
The options associated with this data,
if any.