Package com.aspose.threed
Enum AlphaSource
- java.lang.Object
-
- java.lang.Enum<AlphaSource>
-
- com.aspose.threed.AlphaSource
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AlphaSource>
,java.lang.constant.Constable
public enum AlphaSource extends java.lang.Enum<AlphaSource>
Defines whether the texture contains the alpha channel.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIXED_VALUE
The Alpha is a fixed value which is defined byTextureBase.getAlpha()
NONE
No alpha is defined in the texturePIXEL_ALPHA
The alpha is defined by pixel's alpha channel
-
Method Summary
Modifier and Type Method Description static AlphaSource
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AlphaSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final AlphaSource NONE
No alpha is defined in the texture
-
PIXEL_ALPHA
public static final AlphaSource PIXEL_ALPHA
The alpha is defined by pixel's alpha channel
-
FIXED_VALUE
public static final AlphaSource FIXED_VALUE
The Alpha is a fixed value which is defined byTextureBase.getAlpha()
-
-
Method Detail
-
values
public static AlphaSource[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlphaSource valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-