public static enum Explain.ExplainType extends Enum<Explain.ExplainType>
| Enum Constant and Description | 
|---|
| HOPS | 
| NONE | 
| RECOMPILE_HOPS | 
| RECOMPILE_RUNTIME | 
| RUNTIME | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isHopsType(boolean recompile) | 
| boolean | isRuntimeType(boolean recompile) | 
| static Explain.ExplainType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Explain.ExplainType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Explain.ExplainType NONE
public static final Explain.ExplainType HOPS
public static final Explain.ExplainType RUNTIME
public static final Explain.ExplainType RECOMPILE_HOPS
public static final Explain.ExplainType RECOMPILE_RUNTIME
public static Explain.ExplainType[] values()
for (Explain.ExplainType c : Explain.ExplainType.values()) System.out.println(c);
public static Explain.ExplainType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isHopsType(boolean recompile)
public boolean isRuntimeType(boolean recompile)
Copyright © 2020 The Apache Software Foundation. All rights reserved.