Class DataAdapterHelper
- java.lang.Object
-
- jadx.gui.cache.code.disk.adapters.DataAdapterHelper
-
- Direct Known Subclasses:
UsageFileAdapter
public class DataAdapterHelper extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description DataAdapterHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable java.lang.StringreadNullableUTF(java.io.DataInput in)static intreadUVInt(java.io.DataInput in)Read unsigned variable length integer (ULEB128 encoding)static voidwriteNullableUTF(java.io.DataOutput out, @Nullable java.lang.String str)static voidwriteUVInt(java.io.DataOutput out, int val)Write unsigned variable length integer (ULEB128 encoding)
-
-
-
Method Detail
-
writeNullableUTF
public static void writeNullableUTF(java.io.DataOutput out, @Nullable @Nullable java.lang.String str) throws java.io.IOException- Throws:
java.io.IOException
-
readNullableUTF
@Nullable public static @Nullable java.lang.String readNullableUTF(java.io.DataInput in) throws java.io.IOException- Throws:
java.io.IOException
-
writeUVInt
public static void writeUVInt(java.io.DataOutput out, int val) throws java.io.IOExceptionWrite unsigned variable length integer (ULEB128 encoding)- Throws:
java.io.IOException
-
readUVInt
public static int readUVInt(java.io.DataInput in) throws java.io.IOExceptionRead unsigned variable length integer (ULEB128 encoding)- Throws:
java.io.IOException
-
-