Java com.lowagie.text Phrase fields, constructors, methods, implement or subclass

Example usage for Java com.lowagie.text Phrase fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.lowagie.text Phrase.

The text is from its open source code.

Subclass

com.lowagie.text.Phrase has subclasses.
Click this link to see all its subclasses.

Constructor

Phrase(float leading, Chunk chunk)
Constructs a Phrase with a certain Chunk and a certain leading.
Phrase(String string, Font font)
Constructs a Phrase with a certain String and a certain Font.
Phrase(float leading, String string)
Constructs a Phrase with a certain leading and a certain String.
Phrase(Phrase phrase)
Copy constructor for Phrase.
Phrase(float leading)
Constructs a Phrase with a certain leading.
Phrase(Chunk chunk)
Constructs a Phrase with a certain Chunk.
Phrase(String string)
Constructs a Phrase with a certain String.
Phrase(boolean dummy)
Constructs a Phrase that can be used in the static getInstance() method.
Phrase()
Constructs a Phrase without specifying a leading.
Phrase(float leading, String string, Font font)
Constructs a Phrase with a certain leading, a certain String and a certain Font.

Method

booleanadd(Object o)
Adds a Chunk, Anchor or another Phrase to this Phrase.
voidadd(int index, Object o)
Adds a Chunk, an Anchor or another Phrase to this Phrase.
FontgetFont()
Gets the font of the first Chunk that appears in this Phrase.
PhrasegetInstance(String string)
Gets a special kind of Phrase that changes some characters into corresponding symbols.
floatgetLeading()
Gets the leading of this phrase.
voidsetFont(Font font)
Sets the main font of this phrase.
voidsetLeading(float leading)
Sets the leading of this phrase.