blob: d906c86536410dc459c9e384b03ac4b4fd7fcc8d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 EclipseSource.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ralf Sternberg - initial implementation and API
******************************************************************************/
package org.eclipse.rap.json;
import java.io.IOException;
@SuppressWarnings( "serial" ) // use default serial UID
class JsonNumber extends JsonValue {
private final String string;
JsonNumber( String string ) {
if( string == null ) {
throw new NullPointerException( "string is null" );
}
this.string = string;
}
@Override
public String toString() {
return string;
}
@Override
protected void write( JsonWriter writer ) throws IOException {
writer.write( string );
}
@Override
public boolean isNumber() {
return true;
}
@Override
public int asInt() {
return Integer.parseInt( string, 10 );
}
@Override
public long asLong() {
return Long.parseLong( string, 10 );
}
@Override
public float asFloat() {
return Float.parseFloat( string );
}
@Override
public double asDouble() {
return Double.parseDouble( string );
}
@Override
public int hashCode() {
return string.hashCode();
}
@Override
public boolean equals( Object object ) {
if( this == object ) {
return true;
}
if( object == null ) {
return false;
}
if( getClass() != object.getClass() ) {
return false;
}
JsonNumber other = (JsonNumber)object;
return string.equals( other.string );
}
}