org.xerial.json.JSONInteger Maven / Gradle / Ivy
/*--------------------------------------------------------------------------
* Copyright 2007 Taro L. Saito
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*--------------------------------------------------------------------------*/
//--------------------------------------
// XerialJ Project
//
// JSONInteger.java
// Since: 2007/04/27
//
// $URL$
// $Author$
//--------------------------------------
package org.xerial.json;
public class JSONInteger implements JSONNumber {
int _value;
public JSONInteger(String value)
{
_value = Integer.parseInt(value);
}
public JSONInteger(int value)
{
_value = value;
}
public JSONArray getJSONArray() {
return null;
}
public JSONBoolean getJSONBoolean() {
return null;
}
public JSONNull getJSONNull() {
return null;
}
public JSONNumber getJSONNumber() {
return this;
}
public JSONObject getJSONObject() {
return null;
}
public JSONString getJSONString() {
return null;
}
public String toString()
{
return Integer.toString(_value);
}
public double getDoubleValue() {
return (double) _value;
}
public int getIntValue() {
return _value;
}
public String toJSONString() {
return toString();
}
@Override
public boolean equals(Object obj) {
if(obj instanceof JSONInteger)
{
return _value == ((JSONInteger) obj).getIntValue();
}
else
return false;
}
public JSONValueType getValueType()
{
return JSONValueType.Integer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy