Package org.jf.dexlib2.immutable.value
Class ImmutableEncodedValueFactory
- java.lang.Object
-
- org.jf.dexlib2.immutable.value.ImmutableEncodedValueFactory
-
public class ImmutableEncodedValueFactory extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ImmutableEncodedValueFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncodedValue
defaultValueForType(java.lang.String type)
static com.google.common.collect.ImmutableList<ImmutableEncodedValue>
immutableListOf(java.lang.Iterable<? extends EncodedValue> list)
static ImmutableEncodedValue
of(EncodedValue encodedValue)
static ImmutableEncodedValue
ofNullable(EncodedValue encodedValue)
-
-
-
Method Detail
-
of
@Nonnull public static ImmutableEncodedValue of(@Nonnull EncodedValue encodedValue)
-
defaultValueForType
@Nonnull public static EncodedValue defaultValueForType(java.lang.String type)
-
ofNullable
@Nullable public static ImmutableEncodedValue ofNullable(@Nullable EncodedValue encodedValue)
-
immutableListOf
@Nonnull public static com.google.common.collect.ImmutableList<ImmutableEncodedValue> immutableListOf(@Nullable java.lang.Iterable<? extends EncodedValue> list)
-
-