public boolean equals()

in cassandra-bridge/src/main/java/org/apache/cassandra/bridge/BigNumberConfigImpl.java [133:149]


    public boolean equals(Object other)
    {
        if (this == other)
        {
            return true;
        }
        if (other == null || this.getClass() != other.getClass())
        {
            return false;
        }

        BigNumberConfigImpl that = (BigNumberConfigImpl) other;
        return bigIntegerPrecision == that.bigIntegerPrecision
            && bigIntegerScale == that.bigIntegerScale
            && bigDecimalPrecision == that.bigDecimalPrecision
            && bigDecimalScale == that.bigDecimalScale;
    }