Index
B C D F G I M R S T U V X Z
All Classes|All Packages
All Classes|All Packages
All Classes|All Packages
B
- bayern.steinbrecher.javaUtility - package bayern.steinbrecher.javaUtility
- bayern.steinbrecher.Utility - module bayern.steinbrecher.Utility
- BIC_REGEX - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
The regex representing all valid BICs.
- BindingUtility - Class in bayern.steinbrecher.javaUtility
-
Contains methods for creating bindings.
C
- ControllerUtility - Class in bayern.steinbrecher.javaUtility
-
Utility for tasks typically required by JavaFX controller classes.
- ControllerUtility() - Constructor for class bayern.steinbrecher.javaUtility.ControllerUtility
- createConfirmationAlert(Alert.AlertType, String...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
-
Creates an
Alertwith given settings. - createErrorAlert(String...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
- createInfoAlert(String...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
- createInteractiveAlert(Alert.AlertType, String, ButtonType...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
- createMessageAlert(String, String...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
- createStacktraceAlert(Throwable, String...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
- createWarningAlert(String...) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
D
- determineStage(Node) - Static method in class bayern.steinbrecher.javaUtility.ControllerUtility
- DialogCreationException - Exception in bayern.steinbrecher.javaUtility
- DialogCreationException() - Constructor for exception bayern.steinbrecher.javaUtility.DialogCreationException
- DialogCreationException(String) - Constructor for exception bayern.steinbrecher.javaUtility.DialogCreationException
- DialogCreationException(String, Throwable) - Constructor for exception bayern.steinbrecher.javaUtility.DialogCreationException
- DialogCreationException(Throwable) - Constructor for exception bayern.steinbrecher.javaUtility.DialogCreationException
- DialogUtility - Class in bayern.steinbrecher.javaUtility
F
- FALSE_BINDING - Static variable in class bayern.steinbrecher.javaUtility.BindingUtility
-
Used as identity for sequence of or bindings connected with OR.
G
- get(Object) - Method in class bayern.steinbrecher.javaUtility.SupplyingMap
-
Returns the value associated with the given key or generates an empty entry, associates it with the key and returns it.
- getEntrySupplier() - Method in class bayern.steinbrecher.javaUtility.SupplyingMap
-
Returns the
Functionused for generating new empty entries. - getSepaDate(LocalDate) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Returns a
Stringrepresentation of the givenLocalDatewhich is valid for SEPA Direct Debits. - getSepaDate(LocalDateTime) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Returns a
Stringrepresentation of the givenLocalDateTimewhich is valid for SEPA Direct Debits.
I
- IBAN_REGEX - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
Regex describing a possible valid IBAN (the checksum of the IBAN is not checked by this regex).
- IOUtility - Class in bayern.steinbrecher.javaUtility
- isValidBic(String) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Checks whether the given BIC is valid.
- isValidCreditorId(String) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Checks whether the given creditor id is valid.
- isValidIban(String) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Checks whether the IBAN of the given member has a valid checksum.
- isValidMessageId(String) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Checks whether the given message id would be valid for being used in a Sepa Direct Debit.
- isValidXML(String, URL) - Static method in class bayern.steinbrecher.javaUtility.XMLUtility
-
Checks whether the given
Stringcontains valid XML based on the given schemas.
M
- MAX_CHAR_IBAN - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
The maximum length of an IBAN.
- MAX_CHAR_MESSAGE_ID - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
The maximum length of the message id.
- MAX_CHAR_NAME_FIELD - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
The maximum length of the name of the party creating the SEPA Direct Debit.
- MAX_CHAR_PMTINFID - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
The maximum length of payment information id (PmtInfId).
- MESSAGE_ID_REGEX - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
The regex for checking whether a message id is valid.
R
- readAll(InputStream, Charset) - Static method in class bayern.steinbrecher.javaUtility.IOUtility
- reduceAnd(Stream<? extends ObservableBooleanValue>) - Static method in class bayern.steinbrecher.javaUtility.BindingUtility
-
Reduces given stream concatenating the elements of the given stream using
or. - reduceOr(Stream<? extends ObservableBooleanValue>) - Static method in class bayern.steinbrecher.javaUtility.BindingUtility
-
Reduces given stream concatenating the elements of the given stream using
or. - reduceSum(Stream<? extends ObservableNumberValue>) - Static method in class bayern.steinbrecher.javaUtility.BindingUtility
-
Reduces the given stream summing up all its numerical values.
S
- SepaUtility - Class in bayern.steinbrecher.javaUtility
-
Contains methods for checking some Sepa Direct Debit attributes.
- showAndWait(Alert) - Static method in class bayern.steinbrecher.javaUtility.DialogUtility
- SIZE - Static variable in class bayern.steinbrecher.javaUtility.DialogUtility
-
Width/height of the alert type identifying icon.
- SupplyingMap<K,V> - Class in bayern.steinbrecher.javaUtility
-
Represents a
HashMapwhich creates an empty entry fro a key whenever it is accessed overHashMap.get(java.lang.Object). - SupplyingMap(Function<K, V>) - Constructor for class bayern.steinbrecher.javaUtility.SupplyingMap
-
Creates a
SupplyingMapwhich generates empty entries when accessing them using the passedFunction.
T
- TRUE_BINDING - Static variable in class bayern.steinbrecher.javaUtility.BindingUtility
-
Used as identity for sequence of or bindings connected with AND.
U
- UNIQUE_DAYS_MESSAGEID - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
Holds the count of days the MessageId has to be unique.
- UNIQUE_MONTH_PMTINFID - Static variable in class bayern.steinbrecher.javaUtility.SepaUtility
-
Holds the count of month the PmtInfId has to be unique.
V
- validateSepaXML(String) - Static method in class bayern.steinbrecher.javaUtility.SepaUtility
-
Checks whether the given
Stringcontains valid SEPA DD content.
X
- XMLUtility - Class in bayern.steinbrecher.javaUtility
-
Contains convenient method for handling and checking XML files.
Z
- ZERO_BINDING - Static variable in class bayern.steinbrecher.javaUtility.BindingUtility
-
Used as identity for sequence of sums.
All Classes|All Packages