Methods Summary |
---|
protected int | compareTo0(Constant other){@inheritDoc}
return list.compareTo(((CstArray) other).list);
|
public boolean | equals(java.lang.Object other){@inheritDoc}
if (! (other instanceof CstArray)) {
return false;
}
return list.equals(((CstArray) other).list);
|
public com.android.dx.rop.cst.CstArray$List | getList()Get the underlying list.
return list;
|
public int | hashCode(){@inheritDoc}
return list.hashCode();
|
public boolean | isCategory2(){@inheritDoc}
return false;
|
public java.lang.String | toHuman(){@inheritDoc}
return list.toHuman("{", ", ", "}");
|
public java.lang.String | toString(){@inheritDoc}
return list.toString("array{", ", ", "}");
|
public java.lang.String | typeName(){@inheritDoc}
return "array";
|