legacy_object_map.
The modern Soy type is map, and its Java representation is SoyMap. Use those
instead.@Deprecated @ParametersAreNonnullByDefault public interface SoyLegacyObjectMap extends SoyValue
| Modifier and Type | Method and Description |
|---|---|
SoyValue |
getItem(SoyValue key)
Deprecated.
Gets an item value of this SoyMap.
|
int |
getItemCnt()
Deprecated.
Gets the number of items in this SoyMap.
|
Iterable<? extends SoyValue> |
getItemKeys()
Deprecated.
Gets an iterable over all item keys in this SoyMap.
|
SoyValueProvider |
getItemProvider(SoyValue key)
Deprecated.
Gets a provider of an item value of this SoyMap.
|
boolean |
hasItem(SoyValue key)
Deprecated.
Checks whether this SoyMap has an item with the given key.
|
booleanValue, coerceToBoolean, coerceToString, equals, floatValue, integerValue, longValue, numberValue, render, render, stringValuerenderAndResolve, resolve, statusint getItemCnt()
Iterable<? extends SoyValue> getItemKeys()
Important: Iteration order is undefined.
boolean hasItem(SoyValue key)
key - The item key to check.SoyValue getItem(SoyValue key)
key - The item key to get.SoyValueProvider getItemProvider(SoyValue key)
key - The item key to get.