Package com.airbnb.lottie
Enum RenderMode
- java.lang.Object
-
- java.lang.Enum<RenderMode>
-
- com.airbnb.lottie.RenderMode
-
- All Implemented Interfaces:
Serializable,Comparable<RenderMode>
public enum RenderMode extends Enum<RenderMode>
Controls how Lottie should render. Defaults toAUTOMATIC.- See Also:
for more information.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanuseSoftwareRendering(int sdkInt, boolean hasDashPattern, int numMasksAndMattes)static RenderModevalueOf(String name)Returns the enum constant of this type with the specified name.static RenderMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTOMATIC
public static final RenderMode AUTOMATIC
-
HARDWARE
public static final RenderMode HARDWARE
-
SOFTWARE
public static final RenderMode SOFTWARE
-
-
Method Detail
-
values
public static RenderMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RenderMode c : RenderMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenderMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
useSoftwareRendering
public boolean useSoftwareRendering(int sdkInt, boolean hasDashPattern, int numMasksAndMattes)
-
-