org.alembik.util
Enum TranscodingUtils.TextOverlayColor

java.lang.Object
  extended by java.lang.Enum<TranscodingUtils.TextOverlayColor>
      extended by org.alembik.util.TranscodingUtils.TextOverlayColor
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TranscodingUtils.TextOverlayColor>
Enclosing class:
TranscodingUtils

public static enum TranscodingUtils.TextOverlayColor
extends java.lang.Enum<TranscodingUtils.TextOverlayColor>

The acceptable values of the TranscodingUtils.TextOverlayAttr.COLOR attribute of the TextOverlay transformation.

See Also:
TranscodingUtils.TRANSFORMATION_TEXT_OVERLAY, TranscodingUtils.TextOverlayAttr, TranscodingUtils.TextOverlayFont, TranscodingUtils.setImageTextOverlay(TranscodingJob, String, org.alembik.util.TranscodingUtils.TextOverlayFont), TranscodingUtils.setVideoTextOverlay(TranscodingJob, String, org.alembik.util.TranscodingUtils.TextOverlayFont, org.alembik.util.TranscodingUtils.Coordinates), TranscodingUtils.setVideoTextScrollOverlay(TranscodingJob, String, org.alembik.util.TranscodingUtils.TextOverlayFont, org.alembik.util.TranscodingUtils.Coordinates)

Enum Constant Summary
BEIGE
          Beige font color.
BLACK
          Black font color.
BLUE
          Blue font color.
BROWN
          Brown font color.
CHOCOLATE
          Chocolate font color.
CYAN
          Cyan font color.
DARK_GRAY
          Light grey font color.
DARK_GREEN
          Dark green font color.
GOLD
          Gold font color.
GRAY
          Grey font color.
GREEN
          Green font color.
KHAKI
          Khaki font color.
LIGHT_GRAY
          Light grey font color.
MAGENTA
          Magenta font color.
MAROON
          Maroon font color.
NAVY
          Navy font color.
ORANGE
          Orange font color.
PINK
          Pink font color.
PURPLE
          Purple font color.
RED
          Red font color.
SALMON
          Salmon font color.
TOMATO
          Tomato font color.
TURQUOISE
          Turquoise font color.
VIOLET
          Violet font color.
WHITE
          White font color.
YELLOW
          Yellow font color.
 
Method Summary
 java.lang.String getName()
          Returns the color name.
static TranscodingUtils.TextOverlayColor valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TranscodingUtils.TextOverlayColor[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WHITE

public static final TranscodingUtils.TextOverlayColor WHITE
White font color.


BLACK

public static final TranscodingUtils.TextOverlayColor BLACK
Black font color.


DARK_GRAY

public static final TranscodingUtils.TextOverlayColor DARK_GRAY
Light grey font color.


GRAY

public static final TranscodingUtils.TextOverlayColor GRAY
Grey font color.


LIGHT_GRAY

public static final TranscodingUtils.TextOverlayColor LIGHT_GRAY
Light grey font color.


NAVY

public static final TranscodingUtils.TextOverlayColor NAVY
Navy font color.


BLUE

public static final TranscodingUtils.TextOverlayColor BLUE
Blue font color.


TURQUOISE

public static final TranscodingUtils.TextOverlayColor TURQUOISE
Turquoise font color.


CYAN

public static final TranscodingUtils.TextOverlayColor CYAN
Cyan font color.


DARK_GREEN

public static final TranscodingUtils.TextOverlayColor DARK_GREEN
Dark green font color.


GREEN

public static final TranscodingUtils.TextOverlayColor GREEN
Green font color.


KHAKI

public static final TranscodingUtils.TextOverlayColor KHAKI
Khaki font color.


YELLOW

public static final TranscodingUtils.TextOverlayColor YELLOW
Yellow font color.


GOLD

public static final TranscodingUtils.TextOverlayColor GOLD
Gold font color.


BEIGE

public static final TranscodingUtils.TextOverlayColor BEIGE
Beige font color.


CHOCOLATE

public static final TranscodingUtils.TextOverlayColor CHOCOLATE
Chocolate font color.


BROWN

public static final TranscodingUtils.TextOverlayColor BROWN
Brown font color.


SALMON

public static final TranscodingUtils.TextOverlayColor SALMON
Salmon font color.


ORANGE

public static final TranscodingUtils.TextOverlayColor ORANGE
Orange font color.


RED

public static final TranscodingUtils.TextOverlayColor RED
Red font color.


TOMATO

public static final TranscodingUtils.TextOverlayColor TOMATO
Tomato font color.


PINK

public static final TranscodingUtils.TextOverlayColor PINK
Pink font color.


MAROON

public static final TranscodingUtils.TextOverlayColor MAROON
Maroon font color.


MAGENTA

public static final TranscodingUtils.TextOverlayColor MAGENTA
Magenta font color.


VIOLET

public static final TranscodingUtils.TextOverlayColor VIOLET
Violet font color.


PURPLE

public static final TranscodingUtils.TextOverlayColor PURPLE
Purple font color.

Method Detail

values

public static final TranscodingUtils.TextOverlayColor[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(TranscodingUtils.TextOverlayColor c : TranscodingUtils.TextOverlayColor.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static TranscodingUtils.TextOverlayColor 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 name

getName

public java.lang.String getName()
Returns the color name.

Returns:
color name