コード例 #1
0
 @Override
 public int hashCode() {
   int result = index.hashCode();
   result = 31 * result + state.hashCode();
   result = 31 * result + aliases.hashCode();
   result = 31 * result + settings.hashCode();
   result = 31 * result + mappings.hashCode();
   return result;
 }
コード例 #2
0
 @Override
 public int hashCode() {
   int result = name.hashCode();
   result = 31 * result + order;
   result = 31 * result + template.hashCode();
   result = 31 * result + settings.hashCode();
   result = 31 * result + mappings.hashCode();
   return result;
 }
コード例 #3
0
 static String identify(final Settings settings) {
   return toHexString(settings.hashCode());
 }