blob: 1a54ca5fe47998a45a27a3a8de489f5f0bd100df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package bjc.dicelang.neodice.statements;
import static bjc.dicelang.neodice.statements.StatementValue.Type.*;
import java.util.*;
/**
* A statement value which represents an array of statement values.
* @author Ben Culkin
*
* @param <ElementType> The contained type of value.
*/
public class ArrayStatementValue<ElementType extends StatementValue> extends StatementValue {
/** The type of the contained values. */
public final Type elementType;
/** The contained values. */
public final ElementType[] values;
/**
* Create a new array statement value.
*
* @param elementType The type of the contained values.
* @param values The contained values.
*/
@SafeVarargs
public ArrayStatementValue(Type elementType, ElementType... values) {
super(ARRAY);
this.elementType = elementType;
this.values = values;
}
@Override
public String toString() {
StringBuilder buffer = new StringBuilder();
buffer.append('(');
for (int index = 0; index < values.length; index++) {
ElementType value = values[index];
buffer.append(value);
if (index < values.length - 1) buffer.append(", ");
}
buffer.append(')');
return buffer.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + Arrays.hashCode(values);
result = prime * result + Objects.hash(elementType);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (!super.equals(obj)) return false;
if (getClass() != obj.getClass()) return false;
ArrayStatementValue<?> other = (ArrayStatementValue<?>) obj;
return elementType == other.elementType && Arrays.equals(values, other.values);
}
}
|