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

com.simpligility.maven.plugins.android.phase08preparepackage.DexCompiler Maven / Gradle / Ivy

The newest version!
package com.simpligility.maven.plugins.android.phase08preparepackage;

/**
 * Which compiler to use to dex the classes.
 */
public enum DexCompiler
{
    DEX, // Default
    D8;

    public static DexCompiler valueOfIgnoreCase( String name )
    {
        for ( DexCompiler dexCompiler : DexCompiler.values() )
        {
            if ( dexCompiler.name().equalsIgnoreCase( name ) )
            {
                return dexCompiler;
            }
        }
        throw new IllegalArgumentException(
            "No enum constant " + DexCompiler.class.getCanonicalName() + "." + name );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy