• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2010 The Guava Authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.google.common.collect.testing;
18 
19 import com.google.common.annotations.GwtCompatible;
20 import java.io.Serializable;
21 import org.checkerframework.checker.nullness.qual.Nullable;
22 
23 /**
24  * Simple base class to verify that we handle generics correctly.
25  *
26  * @author Kevin Bourrillion
27  */
28 @GwtCompatible
29 public class BaseComparable implements Comparable<BaseComparable>, Serializable {
30   private final String s;
31 
BaseComparable(String s)32   public BaseComparable(String s) {
33     this.s = s;
34   }
35 
36   @Override
hashCode()37   public int hashCode() { // delegate to 's'
38     return s.hashCode();
39   }
40 
41   @Override
equals(@ullable Object other)42   public boolean equals(@Nullable Object other) {
43     if (other == null) {
44       return false;
45     } else if (other instanceof BaseComparable) {
46       return s.equals(((BaseComparable) other).s);
47     } else {
48       return false;
49     }
50   }
51 
52   @Override
compareTo(BaseComparable o)53   public int compareTo(BaseComparable o) {
54     return s.compareTo(o.s);
55   }
56 
57   private static final long serialVersionUID = 0;
58 }
59