All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.reandroid.arsc.value.bag.Bag Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
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