Home | History | Annotate | Download | only in cst

Lines Matching defs:list

25     /** {@code non-null;} the actual list of contents */
26 private final List list;
31 * @param list {@code non-null;} the actual list of contents
33 public CstArray(List list) {
34 if (list == null) {
35 throw new NullPointerException("list == null");
38 list.throwIfMutable();
40 this.list = list;
50 return list.equals(((CstArray) other).list);
56 return list.hashCode();
62 return list.compareTo(((CstArray) other).list);
68 return list.toString("array{", ", ", "}");
86 return list.toHuman("{", ", ", "}");
90 * Get the underlying list.
92 * @return {@code non-null;} the list
94 public List getList() {
95 return list;
99 * List of {@link Constant} instances.
101 public static final class List
102 extends FixedSizeList implements Comparable<List> {
107 * @param size the size of the list
109 public List(int size) {
115 public int compareTo(List other) {