source: java2python/geniuswebtranslator/geniuswebsrc/geniusweb/issuevalue/DiscreteValueSet.java@ 889

Last change on this file since 889 was 854, checked in by wouter, 5 months ago

#264 more fixes

File size: 3.0 KB
Line 
1package geniusweb.issuevalue;
2
3import java.math.BigInteger;
4import java.util.Collection;
5import java.util.Collections;
6import java.util.Iterator;
7import java.util.List;
8
9import org.eclipse.jdt.annotation.NonNull;
10
11import com.fasterxml.jackson.annotation.JsonAutoDetect;
12import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
13import com.fasterxml.jackson.annotation.JsonCreator;
14import com.fasterxml.jackson.annotation.JsonProperty;
15import com.fasterxml.jackson.databind.JsonDeserializer;
16import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
17
18import tudelft.utilities.immutablelist.ArrayListSet;
19
20/**
21 * set of discrete values
22 */
23// disable the inherited deserializer to prevent getting into infinite loop...
24@JsonDeserialize(using = JsonDeserializer.None.class)
25@JsonAutoDetect(fieldVisibility = Visibility.ANY, getterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE)
26public class DiscreteValueSet implements ValueSet {
27 /*
28 * final, must be immutable so do not provide external access to this list.
29 * ArrayList (instead of List) to help Jackson serializer which avoids
30 * per-field type annotations.
31 */
32 private final @NonNull ArrayListSet<@NonNull DiscreteValue> values = new ArrayListSet<DiscreteValue>();
33
34 @JsonCreator
35 public DiscreteValueSet(
36 @JsonProperty("values") @NonNull Collection<@NonNull DiscreteValue> values) {
37 if (values.contains(null))
38 throw new NullPointerException("values should not contain null");
39 this.values.addAll(values);
40 }
41
42 //abandoned, because we can not overload constructor like this in Python
43 // public DiscreteValueSet(DiscreteValue... issuevalues) {
44 // for (DiscreteValue value : issuevalues) {
45 // this.values.add(value);
46 // }
47 // }
48
49 public @NonNull List<@NonNull DiscreteValue> getValues() {
50 return Collections.unmodifiableList(values);
51 }
52
53 @Override
54 public boolean contains(@NonNull Value value) {
55 return values.contains(value);
56 }
57
58 @Override
59 public @NonNull DiscreteValue get(@NonNull BigInteger index) {
60 return values.get(index.intValue());
61 }
62
63 @Override
64 @NonNull
65 public BigInteger size() {
66 return BigInteger.valueOf(values.size());
67 }
68
69 @Override
70 @NonNull
71 //#PY # BigInteger and long are both int in python
72 public DiscreteValue get(long index) {
73 return values.get((int) index);
74 }
75
76 @Override
77 public @NonNull Iterator iterator() {
78 return values.iterator();
79 }
80
81 @Override
82 public @NonNull String toString() {
83 return "DiscreteValueSet" + values.toString();
84 }
85
86 @Override
87 public int hashCode() {
88 final int prime = 31;
89 int result = 1;
90 result = prime * result + ((values == null) ? 0 : values.hashCode());
91 return result;
92 }
93
94 @Override
95 public boolean equals(Object obj) {
96 if (this == obj)
97 return true;
98 if (obj == null)
99 return false;
100 if (getClass() != obj.getClass())
101 return false;
102 DiscreteValueSet other = (DiscreteValueSet) obj;
103 if (values == null) {
104 if (other.values != null)
105 return false;
106 } else if (!values.equals(other.values))
107 return false;
108 return true;
109 }
110
111}
Note: See TracBrowser for help on using the repository browser.