Returns a hash code value for this type. @return a hash code value for this type.
()
| 884 | * @return a hash code value for this type. |
| 885 | */ |
| 886 | @Override |
| 887 | public int hashCode() { |
| 888 | int hashCode = 13 * (sort == INTERNAL ? OBJECT : sort); |
| 889 | if (sort >= ARRAY) { |
| 890 | for (int i = valueBegin, end = valueEnd; i < end; i++) { |
| 891 | hashCode = 17 * (hashCode + valueBuffer.charAt(i)); |
| 892 | } |
| 893 | } |
| 894 | return hashCode; |
| 895 | } |
| 896 | |
| 897 | /** |
| 898 | * Returns a string representation of this type. |
no outgoing calls
no test coverage detected