⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constructorargumentvalue.java

📁 一个简单的java邮件系统源码
💻 JAVA
字号:
package com.easyjf.container;

public class ConstructorArgumentValue {
	private Integer index;

	private Class type;

	private Object value;

	public ConstructorArgumentValue() {

	}

	public ConstructorArgumentValue(Integer index, Class type, Object value) {
		this.index = index;
		this.type = type;
		this.value = value;
	}
	
	public Integer getIndex() {
		return index;
	}

	public void setIndex(Integer index) {
		this.index = index;
	}

	public Class getType() {
		return type;
	}

	public void setType(Class type) {
		this.type = type;
	}

	public Object getValue() {
		return value;
	}

	public void setValue(Object value) {
		this.value = value;
	}

	public int hashCode() {	
		return index!=null?index.hashCode():value.hashCode();
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -