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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableShortEncodedValue.java37 public class ImmutableShortEncodedValue extends BaseShortEncodedValue implements ImmutableEncodedValue { class in inherits:BaseShortEncodedValue,ImmutableEncodedValue
40 public ImmutableShortEncodedValue(short value) { method in class:ImmutableShortEncodedValue
44 public static ImmutableShortEncodedValue of(ShortEncodedValue shortEncodedValue) {
45 if (shortEncodedValue instanceof ImmutableShortEncodedValue) {
46 return (ImmutableShortEncodedValue)shortEncodedValue;
48 return new ImmutableShortEncodedValue(shortEncodedValue.getValue());

Completed in 73 milliseconds