Java com.badlogic.gdx.utils UBJsonWriter fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.utils UBJsonWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.utils UBJsonWriter.

The text is from its open source code.

Constructor

Method

UBJsonWriterarray(String name)
Begins a new named array container, having the given name.
voidclose()
Closes the underlying output stream and releases any system resources associated with the stream.
UBJsonWriterobject(String name)
Begins a new named object container, having the given name.
UBJsonWriterpop()
Ends the current object or array and pops it off of the element stack.
UBJsonWriterset(String name, byte value)
Appends a named byte value to the stream.
UBJsonWriterset(String name, short value)
Appends a named short value to the stream.
UBJsonWriterset(String name, int value)
Appends a named int value to the stream.
UBJsonWriterset(String name, long value)
Appends a named long value to the stream.
UBJsonWriterset(String name, float value)
Appends a named float value to the stream.
UBJsonWriterset(String name, double value)
Appends a named double value to the stream.
UBJsonWriterset(String name, boolean value)
Appends a named boolean value to the stream.
UBJsonWriterset(String name, char value)
Appends a named char value to the stream.
UBJsonWriterset(String name, String value)
Appends a named String value to the stream.
UBJsonWriterset(String name, byte[] value)
Appends a named byte array value to the stream.
UBJsonWriterset(String name, short[] value)
Appends a named short array value to the stream.
UBJsonWriterset(String name, int[] value)
Appends a named int array value to the stream.
UBJsonWriterset(String name, long[] value)
Appends a named long array value to the stream.
UBJsonWriterset(String name, float[] value)
Appends a named float array value to the stream.
UBJsonWriterset(String name, double[] value)
Appends a named double array value to the stream.
UBJsonWriterset(String name, boolean[] value)
Appends a named boolean array value to the stream.
UBJsonWriterset(String name, char[] value)
Appends a named char array value to the stream.
UBJsonWriterset(String name, String[] value)
Appends a named String array value to the stream.
UBJsonWritervalue(byte value)
Appends a byte value to the stream.
UBJsonWritervalue(short value)
Appends a short value to the stream.
UBJsonWritervalue(int value)
Appends an int value to the stream.
UBJsonWritervalue(long value)
Appends a long value to the stream.
UBJsonWritervalue(float value)
Appends a float value to the stream.
UBJsonWritervalue(double value)
Appends a double value to the stream.
UBJsonWritervalue(boolean value)
Appends a boolean value to the stream.
UBJsonWritervalue(char value)
Appends a char value to the stream.
UBJsonWritervalue(String value)
Appends a String value to the stream.
UBJsonWritervalue(byte[] values)
Appends an optimized byte array value to the stream.
UBJsonWritervalue(short[] values)
Appends an optimized short array value to the stream.
UBJsonWritervalue(int[] values)
Appends an optimized int array value to the stream.
UBJsonWritervalue(long[] values)
Appends an optimized long array value to the stream.
UBJsonWritervalue(float[] values)
Appends an optimized float array value to the stream.
UBJsonWritervalue(double[] values)
Appends an optimized double array value to the stream.
UBJsonWritervalue(boolean[] values)
Appends a boolean array value to the stream.
UBJsonWritervalue(char[] values)
Appends an optimized char array value to the stream.
UBJsonWritervalue(String[] values)
Appends an optimized String array value to the stream.
UBJsonWritervalue(Object object)
Appends the object to the stream, if it is a known value type.