Package org.infinispan.schematic.document.Document

Examples of org.infinispan.schematic.document.Document.Field


    @Override
    public boolean equals( Object obj ) {
        if (obj == this) return true;
        if (obj instanceof Field) {
            Field that = (Field)obj;
            if (!this.getName().equals(that.getName())) return true;
            return this.getValue() != null ? this.getValue().equals(that.getValue()) : that.getValue() == null;
        }
        return false;
    }
View Full Code Here

TOP

Related Classes of org.infinispan.schematic.document.Document.Field

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.