View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.eclipse.aether.internal.test.util;
20  
21  import java.util.Objects;
22  
23  import org.eclipse.aether.version.Version;
24  import org.eclipse.aether.version.VersionConstraint;
25  import org.eclipse.aether.version.VersionRange;
26  
27  import static java.util.Objects.requireNonNull;
28  
29  /**
30   * A constraint on versions for a dependency.
31   */
32  public final class TestVersionConstraint implements VersionConstraint {
33  
34      private final VersionRange range;
35  
36      private final Version version;
37  
38      /**
39       * Creates a version constraint from the specified version range.
40       *
41       * @param range The version range, must not be {@code null}.
42       */
43      public TestVersionConstraint(VersionRange range) {
44          this.range = requireNonNull(range, "version range cannot be null");
45          this.version = null;
46      }
47  
48      /**
49       * Creates a version constraint from the specified version.
50       *
51       * @param version The version, must not be {@code null}.
52       */
53      public TestVersionConstraint(Version version) {
54          this.version = requireNonNull(version, "version cannot be null");
55          this.range = null;
56      }
57  
58      public VersionRange getRange() {
59          return range;
60      }
61  
62      public Version getVersion() {
63          return version;
64      }
65  
66      public boolean containsVersion(Version version) {
67          if (range == null) {
68              return version.equals(this.version);
69          } else {
70              return range.containsVersion(version);
71          }
72      }
73  
74      @Override
75      public String toString() {
76          return String.valueOf((range == null) ? version : range);
77      }
78  
79      @Override
80      public boolean equals(Object obj) {
81          if (this == obj) {
82              return true;
83          }
84          if (obj == null || !getClass().equals(obj.getClass())) {
85              return false;
86          }
87  
88          TestVersionConstraint that = (TestVersionConstraint) obj;
89  
90          return Objects.equals(range, that.range) && Objects.equals(version, that.getVersion());
91      }
92  
93      @Override
94      public int hashCode() {
95          int hash = 17;
96          hash = hash * 31 + hash(getRange());
97          hash = hash * 31 + hash(getVersion());
98          return hash;
99      }
100 
101     private static int hash(Object obj) {
102         return obj != null ? obj.hashCode() : 0;
103     }
104 }