Searched defs:ImmutableArrayEncodedValue (Results 1 - 1 of 1) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableArrayEncodedValue.java42 public class ImmutableArrayEncodedValue extends BaseArrayEncodedValue implements ImmutableEncodedValue { class in inherits:BaseArrayEncodedValue,ImmutableEncodedValue
45 public ImmutableArrayEncodedValue(@Nonnull Collection<? extends EncodedValue> value) { method in class:ImmutableArrayEncodedValue
49 public ImmutableArrayEncodedValue(@Nonnull ImmutableList<ImmutableEncodedValue> value) { method in class:ImmutableArrayEncodedValue
53 public static ImmutableArrayEncodedValue of(@Nonnull ArrayEncodedValue arrayEncodedValue) {
54 if (arrayEncodedValue instanceof ImmutableArrayEncodedValue) {
55 return (ImmutableArrayEncodedValue)arrayEncodedValue;
57 return new ImmutableArrayEncodedValue(arrayEncodedValue.getValue());

Completed in 89 milliseconds