E - Type of each element in Array.public interface IArrayViewModel<E extends IViewModel> extends IViewModel, java.lang.Iterable<E>
| Modifier and Type | Method and Description |
|---|---|
IProperty<java.lang.Integer> |
getCount() |
IProperty<java.lang.CharSequence> |
getLocalizedEmptyMessage() |
E |
getViewModel(int index)
Access the indexth element.
|
java.util.List<E> |
getViewModels() |
int |
indexOf(E element) |
IProperty<java.lang.Boolean> |
isEmpty() |
bindCommand, bindErrors, bindLoading, getActive, getErrors, getTitle, isEnabled, isLoadingjava.util.List<E> getViewModels()
ElementIProperty<java.lang.Integer> getCount()
IProperty<java.lang.Boolean> isEmpty()
IProperty<java.lang.CharSequence> getLocalizedEmptyMessage()
E getViewModel(int index)
index - Must be > 0 and < count.int indexOf(E element)
value equals element or null
element is not found.