public int hashCode()

in src/main/java/org/apache/neethi/builders/PrimitiveAssertion.java [172:179]


    public int hashCode() {
        int hash = 17;
        hash = 31 * hash + (name != null ? name.hashCode() : 0);
        hash = 31 * hash + ((optional) ? 1 : 0);
        hash = 31 * hash + ((ignorable) ? 1 : 0);
        hash = 31 * hash + (textValue != null ? textValue.hashCode() : 0);
        return hash;
    }