On this page
Class AttributedCharacterIterator.Attribute
- All Implemented Interfaces:
-
Serializable
- Direct Known Subclasses:
Format.Field
,TextAttribute
- Enclosing interface:
-
AttributedCharacterIterator
public static class AttributedCharacterIterator.Attribute extends Object implements Serializable
AttributedCharacterIterator
and AttributedString
.
- Since:
- 1.2
- See Also:
Field Summary
Modifier and Type | Field | Description |
---|---|---|
static final AttributedCharacterIterator.Attribute |
INPUT_METHOD_SEGMENT |
Attribute key for input method segments.
|
static final AttributedCharacterIterator.Attribute |
LANGUAGE |
Attribute key for the language of some text.
|
static final AttributedCharacterIterator.Attribute |
READING |
Attribute key for the reading of some text.
|
Constructor Summary
Modifier | Constructor | Description |
---|---|---|
protected |
Constructs an Attribute with the given name.
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
final boolean |
equals |
Compares two objects for equality.
|
protected String |
getName() |
Returns the name of the attribute.
|
final int |
hashCode() |
Returns a hash code value for the object.
|
protected Object |
readResolve() |
Resolves instances being deserialized to the predefined constants.
|
String |
toString() |
Returns a string representation of the object.
|
Field Details
LANGUAGE
public static final AttributedCharacterIterator.Attribute LANGUAGE
Values are instances of Locale
.
- See Also:
READING
public static final AttributedCharacterIterator.Attribute READING
Values are instances of Annotation
holding instances of String
.
- See Also:
INPUT_METHOD_SEGMENT
public static final AttributedCharacterIterator.Attribute INPUT_METHOD_SEGMENT
Values are instances of Annotation
holding a null
reference.
- See Also:
Constructor Details
Attribute
protected Attribute(String name)
Attribute
with the given name.
- Parameters:
name
- the name ofAttribute
Method Details
equals
public final boolean equals(Object obj)
x.equals(y)
if x
and y
refer to the same object, and guarantees this for all subclasses.
hashCode
public final int hashCode()
Object
, but is also final.
toString
public String toString()
"("
, a name identifying the attribute and ")"
.
getName
protected String getName()
- Returns:
-
the name of
Attribute
readResolve
protected Object readResolve() throws InvalidObjectException
- Returns:
-
the resolved
Attribute
object - Throws:
InvalidObjectException
- if the object to resolve is not an instance ofAttribute
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/text/AttributedCharacterIterator.Attribute.html