org.jvnet.substance.api
Enum SubstanceConstants.ColorShiftKind

java.lang.Object
  extended by java.lang.Enum<SubstanceConstants.ColorShiftKind>
      extended by org.jvnet.substance.api.SubstanceConstants.ColorShiftKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SubstanceConstants.ColorShiftKind>
Enclosing class:
SubstanceConstants

Deprecated. Will be removed in version 6.0

@Deprecated
public static enum SubstanceConstants.ColorShiftKind
extends java.lang.Enum<SubstanceConstants.ColorShiftKind>

Color shift kind for shifting themes in inner border painters.

Author:
Kirill Grouchnikov

Enum Constant Summary
SHADE
          Deprecated. Instructs the inner border painter to shade the border theme for the inner part of the border.
THEME_LIGHT
          Deprecated. Instructs the inner border painter to shift the border theme for the inner part of the border towards its light colors.
TINT
          Deprecated. Instructs the inner border painter to tint the border theme for the inner part of the border.
TONE
          Deprecated. Instructs the inner border painter to tone the border theme for the inner part of the border.
 
Method Summary
static SubstanceConstants.ColorShiftKind valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static SubstanceConstants.ColorShiftKind[] values()
          Deprecated. Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SHADE

public static final SubstanceConstants.ColorShiftKind SHADE
Deprecated. 
Instructs the inner border painter to shade the border theme for the inner part of the border.

See Also:
ShadeColorScheme, SubstanceColorScheme.shade(double)

TINT

public static final SubstanceConstants.ColorShiftKind TINT
Deprecated. 
Instructs the inner border painter to tint the border theme for the inner part of the border.

See Also:
TintColorScheme, SubstanceColorScheme.tint(double)

TONE

public static final SubstanceConstants.ColorShiftKind TONE
Deprecated. 
Instructs the inner border painter to tone the border theme for the inner part of the border.

See Also:
ToneColorScheme, SubstanceColorScheme.tone(double)

THEME_LIGHT

public static final SubstanceConstants.ColorShiftKind THEME_LIGHT
Deprecated. 
Instructs the inner border painter to shift the border theme for the inner part of the border towards its light colors.

Method Detail

values

public static SubstanceConstants.ColorShiftKind[] values()
Deprecated. 
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 (SubstanceConstants.ColorShiftKind c : SubstanceConstants.ColorShiftKind.values())
    System.out.println(c);

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

valueOf

public static SubstanceConstants.ColorShiftKind valueOf(java.lang.String name)
Deprecated. 
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
java.lang.NullPointerException - if the argument is null