com.yahoo.bard.webservice.table.Column Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fili-core Show documentation
Show all versions of fili-core Show documentation
Fili web service library provides core capabilities for RESTful aggregation navigation, query planning and
metadata
// Copyright 2016 Yahoo Inc.
// Licensed under the terms of the Apache license. Please see LICENSE.md file distributed with this work for terms.
package com.yahoo.bard.webservice.table;
import java.util.Objects;
/**
* Column.
*/
public class Column {
private final String name;
/**
* Constructor.
*
* @param name column name
*/
public Column(String name) {
this.name = name;
}
/**
* Getter for column name.
*
* @return name
*/
public String getName() {
return name;
}
/**
* Allows comparison based solely on the name between objects of the base class and/or any of the derived classes.
*
* @param o The object to compare against.
*
* @return True if equal, false otherwise.
*/
@Override
public boolean equals(Object o) {
if (this == o) { return true; }
if (o == null) { return false; }
if (!(o instanceof Column)) { return false; }
Column column = (Column) o;
return Objects.equals(name, column.name);
}
@Override
public int hashCode() {
return Objects.hashCode(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy