All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alachisoft.ncache.client.internal.command.GroupEnumerationPointer Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.alachisoft.ncache.client.internal.command;

/**
 * @author Administrator
 */
public class GroupEnumerationPointer extends EnumerationPointer {
//    private String _group;
//    private String _subGroup;
//
//    public GroupEnumerationPointer(String group, String subGroup)
//    {
//        super();
//        _group = group;
//        _subGroup = subGroup;
//    }
//
//    public GroupEnumerationPointer(String id, int chunkId, String group, String subGroup)
//    {
//        super(id, chunkId);
//        _group = group;
//        _subGroup = subGroup;
//    }
//
//    public String getGroup() {
//        return _group;
//    }
//
//    public void setGroup(String _group) {
//        this._group = _group;
//    }
//
//    public String getSubGroup() {
//        return _subGroup;
//    }
//
//    public void setSubGroup(String _subGroup) {
//        this._subGroup = _subGroup;
//    }
//
//    @Override
//    public boolean isGroupPointer()
//    {
//        return true;
//    }
//
//    @Override
//    public boolean equals(Object obj)
//    {
//        boolean equals = false;
//
//        if (obj instanceof GroupEnumerationPointer)
//        {
//            GroupEnumerationPointer other = (GroupEnumerationPointer)obj;
//            if (super.equals(obj))
//            {
//                equals = _group.equals(other._group) && _subGroup.equals(other._subGroup);
//            }
//        }
//
//        return equals;
//    }
//
//    @Override
//    public int hashCode()
//    {
//        return super.hashCode();
//    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy