Package | Description |
---|---|
agi.foundation.compatibility | |
agi.foundation.graphics |
Provides commonly used and instantiated graphics types related to 3D scene management, terrain and imagery, and more.
|
Modifier and Type | Field and Description |
---|---|
static FontStyle |
FontStyle.BOLD
Bold text.
|
static FontStyle |
FontStyle.ITALIC
Italic text.
|
static FontStyle |
FontStyle.REGULAR
Normal text.
|
static FontStyle |
FontStyle.STRIKEOUT
Text with a line through the middle.
|
static FontStyle |
FontStyle.UNDERLINE
Underlined text.
|
Modifier and Type | Method and Description |
---|---|
FontStyle |
FontStyle.add(FontStyle other)
Add the specified value to the current set and return the result.
|
static FontStyle |
FontStyle.getDefault()
Get the value that is considered to be the default.
|
static FontStyle |
FontStyle.getFromValue(int value)
Get the set of values that are associated with the given numeric value.
|
static FontStyle |
FontStyle.of(FontStyle... enums)
Create a new value built by combining the specified values.
|
FontStyle |
FontStyle.remove(FontStyle other)
Remove the specified value from the current set and return the result.
|
static FontStyle[] |
FontStyle.values()
Returns an array containing the constants of this enum type, in the order they're
declared.
|
Modifier and Type | Method and Description |
---|---|
FontStyle |
FontStyle.add(FontStyle other)
Add the specified value to the current set and return the result.
|
boolean |
FontStyle.contains(FontStyle other)
Determines whether the specified value is present in the current set.
|
static FontStyle |
FontStyle.of(FontStyle... enums)
Create a new value built by combining the specified values.
|
FontStyle |
FontStyle.remove(FontStyle other)
Remove the specified value from the current set and return the result.
|
Modifier and Type | Method and Description |
---|---|
FontStyle |
GraphicsFont.getStyle()
Gets the
FontStyle enumeration that contains the style for this font. |
Constructor and Description |
---|
GraphicsFont(String name,
int size,
FontStyle fontStyle,
boolean outline)
Initializes a graphics font with the given arguments.
|