Uses of Interface
net.mtrop.doom.object.TextObject
Packages that use TextObject
Package
Description
Contains the base structural abstracts for this library.
Contains abstracts and implementations of map object types.
Contains object interfaces for most data.
-
Uses of TextObject in net.mtrop.doom
Methods in net.mtrop.doom with type parameters of type TextObjectModifier and TypeMethodDescriptiondefault <TO extends TextObject>
WadEntryAdds data to this Wad, usingentryName
as the name of the new entry.<TO extends TextObject>
WadEntryAdds data to this Wad, usingentryName
as the name of the new entry.default <TO extends TextObject>
WadEntryAdds data to this Wad at a particular entry offset, usingentryName
as the name of the entry.<TO extends TextObject>
WadEntryAdds data to this Wad at a particular entry offset, usingentryName
as the name of the entry.<TO extends TextObject>
TODoomPK3.getTextDataAs
(String entryName, Charset charset, Class<TO> type) Retrieves the data of the first occurrence of a particular entry as an interpreted text-originating object.default <TO extends TextObject>
TOWad.getTextDataAs
(int n, Charset charset, Class<TO> type) Retrieves the text data of an entry at a particular index as an interpreted text-originating object.default <TO extends TextObject>
TOWad.getTextDataAs
(String entryName, int start, Charset charset, Class<TO> type) Retrieves the data of the first occurrence of a particular entry from a starting index as an interpreted text-originating object.default <TO extends TextObject>
TOWad.getTextDataAs
(String entryName, String startEntryName, Charset charset, Class<TO> type) Retrieves the data of the first occurrence of a particular entry from a starting entry (by name) as an interpreted text-originating object.default <TO extends TextObject>
TOWad.getTextDataAs
(String entryName, Charset charset, Class<TO> type) Retrieves the data of the first occurrence of a particular entry as an interpreted text-originating object.default <TO extends TextObject>
TOWad.getTextDataAs
(WadEntry entry, Charset charset, Class<TO> type) Retrieves the data of the specified entry as an interpreted text-originating object.default <TO extends TextObject>
voidWad.replaceEntry
(int index, TO data, Charset encoding) Replaces the entry at an index in the Wad.default <TO extends TextObject>
voidWad.transformTextData
(int n, Charset charset, Class<TO> type, TextObject.Transformer<TO> transformer) Retrieves the decoded data of a particular entry index, optionally transforms it, then writes it back to the Wad.default <TO extends TextObject>
booleanWad.transformTextData
(String entryName, int start, Charset charset, Class<TO> type, TextObject.Transformer<TO> transformer) Retrieves the decoded data of a particular entry, optionally transforms it, then writes it back to the Wad.default <TO extends TextObject>
booleanWad.transformTextData
(String entryName, String startEntryName, Charset charset, Class<TO> type, TextObject.Transformer<TO> transformer) Retrieves the decoded data of a particular entry, optionally transforms it, then writes it back to the Wad.default <TO extends TextObject>
booleanWad.transformTextData
(String entryName, Charset charset, Class<TO> type, TextObject.Transformer<TO> transformer) Retrieves the decoded data of a particular entry, optionally transforms it, then writes it back to the Wad. -
Uses of TextObject in net.mtrop.doom.map
Classes in net.mtrop.doom.map that implement TextObject -
Uses of TextObject in net.mtrop.doom.object
Classes in net.mtrop.doom.object with type parameters of type TextObjectModifier and TypeInterfaceDescriptionstatic interface
TextObject.Transformer<TO extends TextObject>
Transformer interface for transform calls.Methods in net.mtrop.doom.object with type parameters of type TextObjectModifier and TypeMethodDescriptionstatic <TO extends TextObject>
TOCreates a single object of a specific class from a string.static <TO extends TextObject>
TOCreates a single object of a specific class from from anInputStream
.