Open Source Repository

Home /ibatis/ibatis-sqlmap-3.0-beta8 | Repository Home



org/apache/ibatis/metadata/Column.java
package org.apache.ibatis.metadata;

public class Column {

  private String name;
  private int type;

  public Column(String name, int type) {
    this.name = name;
    this.type = type;
  }

  public String getName() {
    return name;
  }

  public int getType() {
    return type;
  }

  public boolean equals(Object o) {
    if (this == oreturn true;
    if (o == null || getClass() != o.getClass()) return false;

    final Column column = (Columno;

    if (type != column.typereturn false;
    if (name != null ? !name.equals(column.name: column.name != nullreturn false;

    return true;
  }

  public int hashCode() {
    int result;
    result = (name != null ? name.hashCode() 0);
    result = 29 * result + type;
    return result;
  }

}