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

org.sfm.reflect.Parameter Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 1.10.3
Show newest version
package org.sfm.reflect;

import java.lang.reflect.Type;

public final class Parameter {
	private final String name;
	private final Class type;
	private final Type genericType;

	public Parameter(String name, Class type, Type genericType) {
		super();
		this.name = name;
		this.type = type;
		this.genericType = genericType;
	}

	public Parameter(String id, Class type) {
		this(id, type, type);
	}

	public String getName() {
		return name;
	}

	public Class getType() {
		return type;
	}

	public Type getGenericType() {
		return genericType;
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((name == null) ? 0 : name.hashCode());
		result = prime * result + ((type == null) ? 0 : type.hashCode());
		return result;
	}
	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		Parameter other = (Parameter) obj;
		if (name == null) {
			if (other.name != null)
				return false;
		} else if (!name.equals(other.name))
			return false;
		if (type == null) {
			if (other.type != null)
				return false;
		} else if (!type.equals(other.type))
			return false;
		return true;
	}

    @Override
    public String toString() {
        return "Parameter{" +
                "name='" + name + '\'' +
                ", type=" + type +
                ", resolvedType=" + genericType +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy