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

com.vaadin.v7.data.util.sqlcontainer.RowId Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2000-2024 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.v7.data.util.sqlcontainer;

import java.io.Serializable;
import java.util.Arrays;

/**
 * RowId represents identifiers of a single database result set row.
 *
 * The data structure of a RowId is an Object array which contains the values of
 * the primary key columns of the identified row. This allows easy equals()
 * -comparison of RowItems.
 *
 *  @deprecated As of 8.0, no replacement available.
 */
@Deprecated
public class RowId implements Serializable {
    private static final long serialVersionUID = -3161778404698901258L;
    protected Object[] id;

    /**
     * Prevent instantiation without required parameters.
     */
    protected RowId() {
    }

    public RowId(Object... id) {
        if (id == null) {
            throw new IllegalArgumentException(
                    "id parameter must not be null!");
        }
        this.id = id;
    }

    public Object[] getId() {
        return id;
    }

    @Override
    public int hashCode() {
        return Arrays.hashCode(getId());
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null || !(RowId.class.equals(obj.getClass()))) {
            return false;
        }
        return Arrays.equals(getId(), ((RowId) obj).getId());
    }

    @Override
    public String toString() {
        if (getId() == null) {
            return "";
        }
        StringBuilder builder = new StringBuilder();
        for (Object id : getId()) {
            builder.append(id);
            builder.append('/');
        }
        if (builder.length() != 0) {
            return builder.substring(0, builder.length() - 1);
        }
        return builder.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy