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.util.version;
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  final class GenericVersionConstraint 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      GenericVersionConstraint(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      GenericVersionConstraint(Version version) {
54          this.version = requireNonNull(version, "version cannot be null");
55          this.range = null;
56      }
57  
58      @Override
59      public VersionRange getRange() {
60          return range;
61      }
62  
63      @Override
64      public Version getVersion() {
65          return version;
66      }
67  
68      @Override
69      public boolean containsVersion(Version version) {
70          if (range == null) {
71              return version.equals(this.version);
72          } else {
73              return range.containsVersion(version);
74          }
75      }
76  
77      @Override
78      public String toString() {
79          return String.valueOf((range == null) ? version : range);
80      }
81  
82      @Override
83      public boolean equals(Object obj) {
84          if (this == obj) {
85              return true;
86          }
87          if (obj == null || !getClass().equals(obj.getClass())) {
88              return false;
89          }
90  
91          GenericVersionConstraint that = (GenericVersionConstraint) obj;
92  
93          return Objects.equals(range, that.range) && Objects.equals(version, that.getVersion());
94      }
95  
96      @Override
97      public int hashCode() {
98          int hash = 17;
99          hash = hash * 31 + hash(getRange());
100         hash = hash * 31 + hash(getVersion());
101         return hash;
102     }
103 
104     private static int hash(Object obj) {
105         return obj != null ? obj.hashCode() : 0;
106     }
107 }