Package com.massivecraft.mcore.xlib.gson.internal

Examples of com.massivecraft.mcore.xlib.gson.internal.LazilyParsedNumber


   * @return get this element as a Number.
   * @throws NumberFormatException if the value contained is not a valid Number.
   */
  @Override
  public Number getAsNumber() {
    return value instanceof String ? new LazilyParsedNumber((String) value) : (Number) value;
  }
View Full Code Here

TOP

Related Classes of com.massivecraft.mcore.xlib.gson.internal.LazilyParsedNumber

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.