ImmutableBeanWithStaticFactory.java

package com.fasterxml.jackson.module.paramnames;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
 * @author Lovro Pandzic
 */
class ImmutableBeanWithStaticFactory {
    @JsonCreator
    public static ImmutableBeanWithStaticFactory of(String name, Integer value) {
        return new ImmutableBeanWithStaticFactory(name, value);
    }

    private ImmutableBeanWithStaticFactory(String name, Integer value) {
        this.name = name;
        this.value = value;
    }
    
    private final String name;
    private final Integer value;

    public String getName() { return name;}
    public Integer getValue() { return value; }

    @Override
    public boolean equals(Object o) {

        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        final ImmutableBeanWithStaticFactory that = (ImmutableBeanWithStaticFactory) o;

        if (name != null ? !name.equals(that.name) : that.name != null) {
            return false;
        }
        if (value != null ? !value.equals(that.value) : that.value != null) {
            return false;
        }

        return true;
    }

    @Override
    public int hashCode() {

        int result = name != null ? name.hashCode() : 0;
        result = 31 * result + (value != null ? value.hashCode() : 0);
        return result;
    }

    @Override
    public String toString() {
        return "ImmutableBeanWithStaticFactory{" +
                "name='" + name + '\'' +
                ", value=" + value +
                '}';
    }
}