- FALSE - Static variable in class java.lang.Boolean
-
The Boolean
object corresponding to the primitive
value false
.
- fascii() - Method in interface de.toem.impulse.samples.IReadableSample
-
Format the current sample using ascii format.
- fasciiAt(int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Format sample idx using ascii format.
- fasciiOf(Object) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Format value of member 'member' using ascii format.
- fbin() - Method in interface de.toem.impulse.samples.IReadableSample
-
Format the current sample using bin format.
- fbinAt(int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Format sample idx using bin format.
- fbinOf(Object) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Format value of member 'member' using bin format.
- fdec() - Method in interface de.toem.impulse.samples.IReadableSample
-
Format the current sample using dec format.
- fdecAt(int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Format sample idx using dec format.
- fdecOf(Object) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Format value of member 'member' using dec format.
- fhex() - Method in interface de.toem.impulse.samples.IReadableSample
-
Format the current sample using hex format.
- fhexAt(int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Format sample idx using hex format.
- fhexOf(Object) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Format value of member 'member' using hex format.
- FIELD - Static variable in interface de.toem.pattern.element.IElementModifier
-
- fieldNameForAttribute(String) - Static method in class de.toem.impulse.cells.record.Signal
-
- fieldNameForAttribute(String) - Static method in class de.toem.impulse.cells.view.PlotConfiguration
-
- File - Class in java.io
-
An abstract representation of file and directory pathnames.
- File(String) - Constructor for class java.io.File
-
Creates a new File
instance by converting the given
pathname string into an abstract pathname.
- File(String, String) - Constructor for class java.io.File
-
Creates a new File
instance from a parent pathname string
and a child pathname string.
- File(File, String) - Constructor for class java.io.File
-
Creates a new File
instance from a parent abstract
pathname and a child pathname string.
- File(URI) - Constructor for class java.io.File
-
Creates a new File instance by converting the given
file: URI into an abstract pathname.
- file() - Method in class java.lang.ProcessBuilder.Redirect
-
Returns the
File
source or destination associated
with this redirect, or
null
if there is no such file.
- FileDescriptor - Class in java.io
-
Instances of the file descriptor class serve as an opaque handle
to the underlying machine-specific structure representing an open
file, an open socket, or another source or sink of bytes.
- FileDescriptor() - Constructor for class java.io.FileDescriptor
-
Constructs an (invalid) FileDescriptor
object.
- FileFilter - Interface in java.io
-
A filter for abstract pathnames.
- FileInputStream - Class in java.io
-
A FileInputStream
obtains input bytes
from a file in a file system.
- FileInputStream(String) - Constructor for class java.io.FileInputStream
-
Creates a FileInputStream
by
opening a connection to an actual file,
the file named by the path name name
in the file system.
- FileInputStream(File) - Constructor for class java.io.FileInputStream
-
Creates a FileInputStream
by
opening a connection to an actual file,
the file named by the File
object file
in the file system.
- FileInputStream(FileDescriptor) - Constructor for class java.io.FileInputStream
-
Creates a FileInputStream
by using the file descriptor
fdObj
, which represents an existing connection to an
actual file in the file system.
- FilenameFilter - Interface in java.io
-
Instances of classes that implement this interface are used to
filter filenames.
- FileNotFoundException - Exception in java.io
-
Signals that an attempt to open the file denoted by a specified pathname
has failed.
- FileNotFoundException() - Constructor for exception java.io.FileNotFoundException
-
Constructs a FileNotFoundException
with
null
as its error detail message.
- FileNotFoundException(String) - Constructor for exception java.io.FileNotFoundException
-
Constructs a FileNotFoundException
with the
specified detail message.
- FileOutputStream - Class in java.io
-
A file output stream is an output stream for writing data to a
File
or to a FileDescriptor
.
- FileOutputStream(String) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file with the
specified name.
- FileOutputStream(String, boolean) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file with the specified
name.
- FileOutputStream(File) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file represented by
the specified File
object.
- FileOutputStream(File, boolean) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the file represented by
the specified File
object.
- FileOutputStream(FileDescriptor) - Constructor for class java.io.FileOutputStream
-
Creates a file output stream to write to the specified file
descriptor, which represents an existing connection to an actual
file in the file system.
- FilePermission - Class in java.io
-
This class represents access to a file or directory.
- FilePermission(String, String) - Constructor for class java.io.FilePermission
-
Creates a new FilePermission object with the specified actions.
- FileReader - Class in java.io
-
Convenience class for reading character files.
- FileReader(String) - Constructor for class java.io.FileReader
-
Creates a new FileReader, given the name of the
file to read from.
- FileReader(File) - Constructor for class java.io.FileReader
-
Creates a new FileReader, given the File
to read from.
- FileReader(FileDescriptor) - Constructor for class java.io.FileReader
-
Creates a new FileReader, given the
FileDescriptor to read from.
- FileWriter - Class in java.io
-
Convenience class for writing character files.
- FileWriter(String) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a file name.
- FileWriter(String, boolean) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a file name with a boolean
indicating whether or not to append the data written.
- FileWriter(File) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a File object.
- FileWriter(File, boolean) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object given a File object.
- FileWriter(FileDescriptor) - Constructor for class java.io.FileWriter
-
Constructs a FileWriter object associated with a file descriptor.
- fillInStackTrace() - Method in class java.lang.Throwable
-
Fills in the execution stack trace.
- fillMarkers(Markers) - Method in class de.toem.impulse.cells.record.Signal
-
- fillMarkers(Markers) - Method in interface de.toem.pattern.element.ICell
-
- fillTribeMarkers(Markers) - Method in interface de.toem.pattern.element.ICell
-
- FilterInputStream - Class in java.io
-
A FilterInputStream
contains
some other input stream, which it uses as
its basic source of data, possibly transforming
the data along the way or providing additional
functionality.
- FilterOutputStream - Class in java.io
-
This class is the superclass of all classes that filter output
streams.
- FilterOutputStream(OutputStream) - Constructor for class java.io.FilterOutputStream
-
Creates an output stream filter built on top of the specified
underlying output stream.
- FilterReader - Class in java.io
-
Abstract class for reading filtered character streams.
- FilterWriter - Class in java.io
-
Abstract class for writing filtered character streams.
- FINAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pf" in the Unicode specification.
- fireElementAboutToBeModified(ElementModifierEvent) - Static method in class de.toem.pattern.element.Elements
-
- fireElementAboutToBeModified(ElementModifierEvent, List<IElementListener>) - Static method in class de.toem.pattern.element.Elements
-
- fireElementAboutToBeModified(ElementModifierEvent) - Method in interface de.toem.pattern.element.IElement
-
- fireElementBound(IElement) - Static method in class de.toem.pattern.element.Elements
-
- fireElementBound(IElement, List<IElementListener>) - Static method in class de.toem.pattern.element.Elements
-
- fireElementBound() - Method in interface de.toem.pattern.element.IElement
-
- fireElementLoaded(IElement, boolean) - Static method in class de.toem.pattern.element.Elements
-
- fireElementLoaded(IElement, boolean, List<IElementListener>) - Static method in class de.toem.pattern.element.Elements
-
- fireElementLoaded(boolean) - Method in interface de.toem.pattern.element.IElement
-
- fireElementModified(ElementModifierEvent) - Static method in class de.toem.pattern.element.Elements
-
- fireElementModified(ElementModifierEvent, List<IElementListener>) - Static method in class de.toem.pattern.element.Elements
-
- fireElementModified(ElementModifierEvent, boolean) - Method in interface de.toem.pattern.element.IElement
-
- fireElementResetted(IElement) - Static method in class de.toem.pattern.element.Elements
-
- fireElementResetted(IElement, List<IElementListener>) - Static method in class de.toem.pattern.element.Elements
-
- fireElementResetted() - Method in interface de.toem.pattern.element.IElement
-
- fireElementUnbound(IElement, boolean) - Static method in class de.toem.pattern.element.Elements
-
- fireElementUnbound(IElement, boolean, List<IElementListener>) - Static method in class de.toem.pattern.element.Elements
-
- fireElementUnbound(boolean) - Method in interface de.toem.pattern.element.IElement
-
- flipBit(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is equivalent to this BigInteger
with the designated bit flipped.
- Float - Class in java.lang
-
The Float
class wraps a value of primitive type
float
in an object.
- Float(float) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float
object that
represents the primitive float
argument.
- Float(double) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float
object that
represents the argument converted to type float
.
- Float(String) - Constructor for class java.lang.Float
-
Constructs a newly allocated Float
object that
represents the floating-point value of type float
represented by the string.
- Float32 - Static variable in class de.toem.impulse.samples.ISamples.SignalDescriptor
-
- Float64 - Static variable in class de.toem.impulse.samples.ISamples.SignalDescriptor
-
- FLOAT_ACCURACY_32 - Static variable in interface de.toem.impulse.samples.ISample
-
- FLOAT_ACCURACY_64 - Static variable in interface de.toem.impulse.samples.ISample
-
- FLOAT_ACCURACY_BIG - Static variable in interface de.toem.impulse.samples.ISample
-
- FLOAT_ACCURACY_DEFAULT - Static variable in interface de.toem.impulse.samples.ISample
-
- FloatBase - Enum in de.toem.impulse.domain
-
- floatToIntBits(float) - Static method in class java.lang.Float
-
Returns a representation of the specified floating-point value
according to the IEEE 754 floating-point "single format" bit
layout.
- floatToRawIntBits(float) - Static method in class java.lang.Float
-
Returns a representation of the specified floating-point value
according to the IEEE 754 floating-point "single format" bit
layout, preserving Not-a-Number (NaN) values.
- floatValue() - Method in interface de.toem.impulse.samples.IReadableSample
-
Return current sample as float value.
- floatValue(Object) - Method in interface de.toem.impulse.samples.ISampleConverter
-
- floatValue() - Method in class de.toem.impulse.values.Enumeration
-
- floatValue() - Method in class de.toem.impulse.values.Logic
-
- floatValue() - Method in class java.lang.Byte
-
Returns the value of this Byte
as a
float
.
- floatValue() - Method in class java.lang.Double
-
Returns the float
value of this
Double
object.
- floatValue() - Method in class java.lang.Float
-
Returns the float
value of this Float
object.
- floatValue() - Method in class java.lang.Integer
-
Returns the value of this Integer
as a
float
.
- floatValue() - Method in class java.lang.Long
-
Returns the value of this Long
as a
float
.
- floatValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a float
.
- floatValue() - Method in class java.lang.Short
-
Returns the value of this Short
as a
float
.
- floatValue() - Method in class java.math.BigDecimal
-
Converts this BigDecimal
to a float
.
- floatValue() - Method in class java.math.BigInteger
-
Converts this BigInteger to a float
.
- floatValueAt(int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Returns sample at index idx as float value.
- floatValueOf(Object) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Returns value of member 'member' as float value.
- floor(double) - Static method in class java.lang.Math
-
Returns the largest (closest to positive infinity)
double
value that is less than or equal to the
argument and is equal to a mathematical integer.
- floor(double) - Static method in class java.lang.StrictMath
-
Returns the largest (closest to positive infinity)
double
value that is less than or equal to the
argument and is equal to a mathematical integer.
- flush(long) - Method in interface de.toem.impulse.samples.ISamplesWriter
-
Flush current writer data into its packed samples.
- flush() - Method in interface de.toem.impulse.samples.ISamplesWriter
-
Flush current writer data into its packed samples.
- flush() - Method in class java.io.BufferedOutputStream
-
Flushes this buffered output stream.
- flush() - Method in class java.io.BufferedWriter
-
Flushes the stream.
- flush() - Method in class java.io.CharArrayWriter
-
Flush the stream.
- flush() - Method in class java.io.Console
-
Flushes the console and forces any buffered output to be written
immediately .
- flush() - Method in class java.io.DataOutputStream
-
Flushes this data output stream.
- flush() - Method in class java.io.FilterOutputStream
-
Flushes this output stream and forces any buffered output bytes
to be written out to the stream.
- flush() - Method in class java.io.FilterWriter
-
Flushes the stream.
- flush() - Method in interface java.io.Flushable
-
Flushes this stream by writing any buffered output to the underlying
stream.
- flush() - Method in interface java.io.ObjectOutput
-
Flushes the stream.
- flush() - Method in class java.io.ObjectOutputStream
-
Flushes the stream.
- flush() - Method in class java.io.OutputStream
-
Flushes this output stream and forces any buffered output bytes
to be written out.
- flush() - Method in class java.io.OutputStreamWriter
-
Flushes the stream.
- flush() - Method in class java.io.PipedOutputStream
-
Flushes this output stream and forces any buffered output bytes
to be written out.
- flush() - Method in class java.io.PipedWriter
-
Flushes this output stream and forces any buffered output characters
to be written out.
- flush() - Method in class java.io.PrintStream
-
Flushes the stream.
- flush() - Method in class java.io.PrintWriter
-
Flushes the stream.
- flush() - Method in class java.io.StringWriter
-
Flush the stream.
- flush() - Method in class java.io.Writer
-
Flushes the stream.
- Flushable - Interface in java.io
-
A Flushable is a destination of data that can be flushed.
- foct() - Method in interface de.toem.impulse.samples.IReadableSample
-
Format the current sample using oct format.
- foctAt(int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Format sample idx using oct format.
- foctOf(Object) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Format value of member 'member' using oct format.
- FOLDER - Static variable in interface de.toem.pattern.element.IElement
-
- FOLDER_ACCORDION - Static variable in class de.toem.impulse.cells.view.FolderConfiguration
-
- FOLDER_ACCORDION - Static variable in interface de.toem.impulse.paint.IPaint
-
- FOLDER_NORMAL - Static variable in class de.toem.impulse.cells.view.FolderConfiguration
-
- FOLDER_NORMAL - Static variable in interface de.toem.impulse.paint.IPaint
-
- FOLDER_OPTIONS - Static variable in class de.toem.impulse.cells.view.FolderConfiguration
-
- FolderConfiguration - Class in de.toem.impulse.cells.view
-
- FolderConfiguration() - Constructor for class de.toem.impulse.cells.view.FolderConfiguration
-
- FolderConfigurationInstancer - Class in de.toem.impulse.cells.view
-
- FolderConfigurationInstancer() - Constructor for class de.toem.impulse.cells.view.FolderConfigurationInstancer
-
- FolderConfigurationInstancer(FolderConfigurationInstancer, List<IElement>) - Constructor for class de.toem.impulse.cells.view.FolderConfigurationInstancer
-
- folderMode - Variable in class de.toem.impulse.cells.view.FolderConfiguration
-
- forClass() - Method in class java.io.ObjectStreamClass
-
Return the class in the local VM that this version is mapped to.
- forContext(Object) - Method in class de.toem.impulse.cells.view.CursorConfigurationInstancer
-
- forContext(Object) - Method in class de.toem.impulse.cells.view.PlotConfigurationInstancer
-
- forContext(Object) - Method in class de.toem.impulse.cells.view.ViewConfigurationInstancer
-
- forDigit(int, int) - Static method in class java.lang.Character
-
Determines the character representation for a specific digit in
the specified radix.
- format(int) - Method in interface de.toem.impulse.samples.IGroupPointer
-
Formats the current group using format 'format'.
- format(int) - Method in interface de.toem.impulse.samples.IPointer
-
Formats the current group/sample using format 'format'.
- format(int) - Method in interface de.toem.impulse.samples.IReadableGroup
-
Formats the current group using format 'format'.
- format(int) - Method in interface de.toem.impulse.samples.IReadableSample
-
Formats the current sample using format 'format'.
- format(int) - Method in interface de.toem.impulse.samples.IReadableValue
-
- format(Object, int) - Method in interface de.toem.impulse.samples.ISampleConverter
-
- format(Object, int, boolean) - Method in interface de.toem.impulse.samples.ISampleConverter
-
- format(int) - Method in class de.toem.impulse.values.AttachedLabel
-
- format(int) - Method in class de.toem.impulse.values.AttachedRelation
-
- format(int) - Method in class de.toem.impulse.values.CompoundValue
-
- format(int) - Method in interface de.toem.impulse.values.IAttachment
-
- format(int) - Method in class de.toem.impulse.values.Transaction
-
- format(String, Object...) - Method in class java.io.Console
-
Writes a formatted string to this console's output stream using
the specified format string and arguments.
- format(String, Object...) - Method in class java.io.PrintStream
-
Writes a formatted string to this output stream using the specified
format string and arguments.
- format(Locale, String, Object...) - Method in class java.io.PrintStream
-
Writes a formatted string to this output stream using the specified
format string and arguments.
- format(String, Object...) - Method in class java.io.PrintWriter
-
Writes a formatted string to this writer using the specified format
string and arguments.
- format(Locale, String, Object...) - Method in class java.io.PrintWriter
-
Writes a formatted string to this writer using the specified format
string and arguments.
- FORMAT - Static variable in class java.lang.Character
-
General category "Cf" in the Unicode specification.
- format(String, Object...) - Static method in class java.lang.String
-
Returns a formatted string using the specified format string and
arguments.
- format(Locale, String, Object...) - Static method in class java.lang.String
-
Returns a formatted string using the specified locale, format string,
and arguments.
- FORMAT_ASCII - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_BINARY - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_BOOLEAN - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_DEFAULT - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_KEY_VALUES - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_MASK - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_MEMBER_0 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_MEMBER_1 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_MEMBER_2 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_MEMBER_3 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_COLLECTION_VALUES_ONLY - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F0 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F1 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F2 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F3 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F4 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F5 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F6 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F7 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F_MAX - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DECIMAL_F_MIN - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DEFAULT - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DEFAULT - Static variable in class de.toem.impulse.values.AttachedRelation
-
- FORMAT_DELTA_DOMAIN - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_DELTA_VALUE - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_EVENT - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_GROUP_INDEX - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_GROUP_ORDER - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_HEXADECIMAL - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_INDEX - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_MEMBER_0 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_MEMBER_1 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_MESSAGE_TARGET - Static variable in class de.toem.impulse.values.AttachedRelation
-
- FORMAT_NONE - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_OCTAL - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_R4 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_R5 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_R6 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_R7 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_R8 - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_RELATION_MAX - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_RELATION_MIN - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_SIMPLE_MAX - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_SIMPLE_MIN - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_SL_TEXT - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_TARGET - Static variable in class de.toem.impulse.values.AttachedRelation
-
- FORMAT_TEXT - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_VALUE_DEFAULT - Static variable in interface de.toem.impulse.samples.ISample
-
- FORMAT_VALUE_MASK - Static variable in interface de.toem.impulse.samples.ISample
-
- formatAt(int, int) - Method in interface de.toem.impulse.samples.IReadableSamples
-
Format sample idx using format 'format' ( ISample.FORMAT_...).
- formatCollectionLabels - Static variable in class de.toem.impulse.cells.view.PlotConfiguration
-
- formatCollectionLabels - Static variable in interface de.toem.impulse.samples.ISample
-
- formatCollectionOptions - Static variable in class de.toem.impulse.cells.view.PlotConfiguration
-
- formatCollectionOptions - Static variable in interface de.toem.impulse.samples.ISample
-
- formatOf(Object, int) - Method in interface de.toem.impulse.samples.IReadableMembers
-
Format value of member 'member' using format 'format'.
- formatOf(Object, int) - Method in class de.toem.impulse.values.CompoundValue
-
- formatOf(Object, int) - Method in class de.toem.impulse.values.Transaction
-
- formatValueLabels - Static variable in class de.toem.impulse.cells.view.PlotConfiguration
-
- formatValueLabels - Static variable in interface de.toem.impulse.samples.ISample
-
- formatValueOptions - Static variable in class de.toem.impulse.cells.view.PlotConfiguration
-
- formatValueOptions - Static variable in interface de.toem.impulse.samples.ISample
-
- forName(String) - Static method in class java.lang.Character.UnicodeBlock
-
Returns the UnicodeBlock with the given name.
- forName(String) - Static method in enum java.lang.Character.UnicodeScript
-
Returns the UnicodeScript constant with the given Unicode script
name or the script name alias.
- forName(String) - Static method in class java.lang.Class
-
Returns the Class
object associated with the class or
interface with the given string name.
- forName(String, boolean, ClassLoader) - Static method in class java.lang.Class
-
Returns the Class
object associated with the class or
interface with the given string name, using the given class loader.
- forSource(Object[]) - Method in class de.toem.impulse.cells.view.FolderConfigurationInstancer
-
- forSource(Object[]) - Method in class de.toem.impulse.cells.view.PlotConfigurationInstancer
-
- forSource(Object[]) - Method in class de.toem.impulse.cells.view.SourceReferenceInstancer
-
- freeMemory() - Method in class java.lang.Runtime
-
Returns the amount of free memory in the Java Virtual Machine.
- FrequencyBase - Enum in de.toem.impulse.domain
-
- from(File) - Static method in class java.lang.ProcessBuilder.Redirect
-
Returns a redirect to read from the specified file.
- fromMember(IMemberDescriptor) - Static method in enum de.toem.impulse.samples.ISamples.SignalType
-
Return the corresponding signal type of a struct member.
- fromStruct(MemberDescriptor) - Static method in class de.toem.impulse.samples.ISamples.SignalDescriptor
-
Return the corresponding signal descriptor of a struct member.
- fuzzy() - Method in interface de.toem.impulse.paint.ITheme.IPointsToResult
-
- fuzzy() - Method in class de.toem.impulse.paint.ITheme.PointsToResult
-