Java java.awt.image.renderable ParameterBlock fields, constructors, methods, implement or subclass

Example usage for Java java.awt.image.renderable ParameterBlock fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.awt.image.renderable ParameterBlock.

The text is from its open source code.

Constructor

ParameterBlock()
A dummy constructor.

Method

ParameterBlockadd(Object obj)
Adds an object to the list of parameters.
ParameterBlockadd(byte b)
Adds a Byte to the list of parameters.
ParameterBlockadd(char c)
Adds a Character to the list of parameters.
ParameterBlockadd(short s)
Adds a Short to the list of parameters.
ParameterBlockadd(int i)
Adds a Integer to the list of parameters.
ParameterBlockadd(long l)
Adds a Long to the list of parameters.
ParameterBlockadd(float f)
Adds a Float to the list of parameters.
ParameterBlockadd(double d)
Adds a Double to the list of parameters.
ParameterBlockaddSource(Object source)
Adds an image to end of the list of sources.
intgetIntParameter(int index)
A convenience method to return a parameter as an int.
ObjectgetObjectParameter(int index)
Gets a parameter as an object.
RenderedImagegetRenderedSource(int index)
Returns a source as a RenderedImage .
ObjectgetSource(int index)
Returns a source as a general Object.
VectorgetSources()
Returns the entire Vector of sources.
ParameterBlockset(Object obj, int index)
Replaces an Object in the list of parameters.
ParameterBlockset(byte b, int index)
Replaces an Object in the list of parameters with a Byte.
ParameterBlockset(char c, int index)
Replaces an Object in the list of parameters with a Character.
ParameterBlockset(short s, int index)
Replaces an Object in the list of parameters with a Short.
ParameterBlockset(int i, int index)
Replaces an Object in the list of parameters with an Integer.
ParameterBlockset(long l, int index)
Replaces an Object in the list of parameters with a Long.
ParameterBlockset(float f, int index)
Replaces an Object in the list of parameters with a Float.
ParameterBlockset(double d, int index)
Replaces an Object in the list of parameters with a Double.
ParameterBlocksetSource(Object source, int index)
Replaces an entry in the list of source with a new source.