类 ParserHelper
- java.lang.Object
-
- cn.authing.guard.svg.ParserHelper
-
public class ParserHelper extends java.lang.Object
-
-
字段概要
字段 修饰符和类型 字段 说明 intpos
-
构造器概要
构造器 构造器 说明 ParserHelper(java.lang.CharSequence s, int pos)
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 voidadvance()static floatbuildFloat(int mant, int exp)Computes a float from mantissa and exponent.floatnextFloat()floatparseFloat()Parses the content of the buffer and converts it to a float.voidskipNumberSeparator()voidskipWhitespace()
-
-
-
方法详细资料
-
skipWhitespace
public void skipWhitespace()
-
skipNumberSeparator
public void skipNumberSeparator()
-
advance
public void advance()
-
parseFloat
public float parseFloat()
Parses the content of the buffer and converts it to a float.
-
buildFloat
public static float buildFloat(int mant, int exp)Computes a float from mantissa and exponent.
-
nextFloat
public float nextFloat()
-
-