public static final enum

MultipleGradientPaint.CycleMethod

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ java.awt.MultipleGradientPaint.CycleMethod

Class Overview

The method to use when painting outside the gradient bounds.

Summary

Enum Values
MultipleGradientPaint.CycleMethod  NO_CYCLE  Use the terminal colors to fill the remaining area. 
MultipleGradientPaint.CycleMethod  REFLECT  Cycle the gradient colors start-to-end, end-to-start to fill the remaining area. 
MultipleGradientPaint.CycleMethod  REPEAT  Cycle the gradient colors start-to-end, start-to-end to fill the remaining area. 
Public Methods
static MultipleGradientPaint.CycleMethod valueOf(String name)
final static CycleMethod[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final MultipleGradientPaint.CycleMethod NO_CYCLE

Use the terminal colors to fill the remaining area.

public static final MultipleGradientPaint.CycleMethod REFLECT

Cycle the gradient colors start-to-end, end-to-start to fill the remaining area.

public static final MultipleGradientPaint.CycleMethod REPEAT

Cycle the gradient colors start-to-end, start-to-end to fill the remaining area.

Public Methods

public static MultipleGradientPaint.CycleMethod valueOf (String name)

public static final CycleMethod[] values ()