Uses of Class
com.opencloud.rhino.util.EncodableList.BackingStore
-
Packages that use EncodableList.BackingStore Package Description com.opencloud.rhino.cmp.codecs com.opencloud.rhino.util -
-
Uses of EncodableList.BackingStore in com.opencloud.rhino.cmp.codecs
Methods in com.opencloud.rhino.cmp.codecs that return EncodableList.BackingStore Modifier and Type Method Description EncodableList.BackingStore
backingStore()
The type of backing store to use for list elements. -
Uses of EncodableList.BackingStore in com.opencloud.rhino.util
Methods in com.opencloud.rhino.util that return EncodableList.BackingStore Modifier and Type Method Description static EncodableList.BackingStore
EncodableList.BackingStore. valueOf(String name)
Returns the enum constant of this type with the specified name.static EncodableList.BackingStore[]
EncodableList.BackingStore. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.opencloud.rhino.util with parameters of type EncodableList.BackingStore Modifier and Type Method Description protected abstract EncodableList<E>
EncodableList. newInstance(EncodableList.BackingStore backingStore, List<E> list)
Create a new instance of thisEncodableList
wrapping the specified list.protected List<E>
EncodableList. newListInstance(EncodableList.BackingStore backingStore)
Create a new list instance for the backing store.Constructors in com.opencloud.rhino.util with parameters of type EncodableList.BackingStore Constructor Description EncodableList(EncodableList.BackingStore backingStore)
Create anEncodableList
using the specified backing store.EncodableList(EncodableList.BackingStore backingStore, List<E> list)
Create anEncodableList
using the specified backing store and list.
-