com.crashnote.external.config.impl.ConfigLong Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crashnote-appengine Show documentation
Show all versions of crashnote-appengine Show documentation
Reports exceptions from Java apps on Appengine to crashnote.com
/**
* Copyright (C) 2011-2012 Typesafe Inc.
*/
package com.crashnote.external.config.impl;
import java.io.ObjectStreamException;
import java.io.Serializable;
import com.crashnote.external.config.ConfigOrigin;
import com.crashnote.external.config.ConfigValueType;
final class ConfigLong extends ConfigNumber implements Serializable {
private static final long serialVersionUID = 1L;
final private long value;
ConfigLong(final ConfigOrigin origin, final long value, final String originalText) {
super(origin, originalText);
this.value = value;
}
@Override
public ConfigValueType valueType() {
return ConfigValueType.NUMBER;
}
@Override
public Long unwrapped() {
return value;
}
@Override
String transformToString() {
final String s = super.transformToString();
if (s == null)
return Long.toString(value);
else
return s;
}
@Override
protected long longValue() {
return value;
}
@Override
protected double doubleValue() {
return value;
}
@Override
protected ConfigLong newCopy(final ConfigOrigin origin) {
return new ConfigLong(origin, value, originalText);
}
// serialization all goes through SerializedConfigValue
private Object writeReplace() throws ObjectStreamException {
return new SerializedConfigValue(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy