com.reandroid.arsc.value.bag.Bag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARSCLib Show documentation
Show all versions of ARSCLib Show documentation
Android binary resources read/write library
package com.reandroid.arsc.value.bag;
import com.reandroid.arsc.value.Entry;
public interface Bag {
Entry getEntry();
default String getName(){
Entry entry =getEntry();
if(entry ==null){
return null;
}
return entry.getName();
}
default String getTypeName(){
Entry entry =getEntry();
if(entry ==null){
return null;
}
return entry.getTypeName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy