前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >JsonValue 封装类

JsonValue 封装类

作者头像
执笔记忆的空白
发布2020-12-25 14:19:18
6420
发布2020-12-25 14:19:18
举报
文章被收录于专栏:Java日常

此文章是针对之前的一篇博客做的一个补充

Json与Map、List、Object互转

代码语言:javascript
复制
package com.jf.rentcar.util;

import java.util.HashMap;
import java.util.List;


public class JsonValue {
	private String value;
	private HashMap<String,JsonValue> map;
	private List<HashMap<String,JsonValue>> list;
	private Boolean bool;
	private Number number;

	public void setNumber(Number number) {
		this.number = number;
	}

	public Number getNumber() {
		return number;
	}

	public JsonValue(){
	}

	public JsonValue(String value){
		setValue(value);
	}
	
	public JsonValue(Integer value){
		setValue(StringUtil.valueOf(value));
	}
	public JsonValue(Double value){
		setValue(StringUtil.valueOf(value));
	}
	
	public JsonValue(Long value){
		setValue(String.valueOf(value));
	}
	
	public JsonValue(Boolean bool){
		setBool(bool);
	}

	public JsonValue(HashMap<String, JsonValue>  map){
		setMap(map);
	}

	public JsonValue(List<HashMap<String, JsonValue>> list){
		setList(list);
	}

	public String getValue() {
		return value;
	}
	
	public void setValue(String value) {
		this.value = value;
	}

	public HashMap<String, JsonValue> getMap() {
		return map;
	}
	
	public void setMap(HashMap<String, JsonValue> map) {
		this.map = map;
	}

	public List<HashMap<String, JsonValue>> getList() {
		return list;
	}
	
	public void setList(List<HashMap<String, JsonValue>> list) {
		this.list = list;
	}
	
	public Boolean getBool() {
		return bool;
	}

	public void setBool(Boolean bool) {
		this.bool = bool;
	}

	public Class getValueType(){
		if(getValue() != null){
			return getValue().getClass();
		}
		if(getMap() != null){
			return getMap().getClass();
		}
		if(getList() != null){
			return getList().getClass();
		}
		if(getBool() != null){
			return getBool().getClass();
		}
		if(getNumber() != null){
			return getNumber().getClass();
		}
		
		return null;
	}

	public Object getJsonValue(){
		if(getValue() != null){
			return getValue();
		}
		if(getMap() != null){
			return getMap();
		}
		if(getList() != null){
			return getList();
		}
		if(getBool() != null){
			return getBool();
		}
		if(getNumber() != null){
			return getNumber();
		}
		return null;
	}

}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016/01/05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档