congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Bankleitzahl.parse
Code IndexAdd Tabnine to your IDE (free)

How to use
parse
method
in
org.jdtaus.banking.Bankleitzahl

Best Java code snippets using org.jdtaus.banking.Bankleitzahl.parse (Showing top 5 results out of 315)

origin: org.jdtaus.editor/jdtaus-editor-client-application

public Object stringToValue(final String text)
throws ParseException
{
  return Bankleitzahl.parse(text);
}
origin: org.jdtaus.common/jdtaus-banking-api

/**
 * Parses text from the beginning of the given string to produce a {@code Bankleitzahl}.
 * <p>Unlike the {@link #parse(String)} method this method throws an {@code IllegalArgumentException} if
 * {@code bankCode} cannot be parsed or is of invalid length.</p>
 *
 * @param bankCode A Bankleitzahl in either electronic or letter format.
 *
 * @return The parsed value.
 *
 * @throws NullPointerException if {@code bankCode} is {@code null}.
 * @throws IllegalArgumentException if the parse fails or {@code bankCode} is of invalid length.
 */
public static Bankleitzahl valueOf( final String bankCode )
{
  try
  {
    return Bankleitzahl.parse( bankCode );
  }
  catch ( final ParseException e )
  {
    throw (IllegalArgumentException) new IllegalArgumentException( bankCode ).initCause( e );
  }
}
origin: org.jdtaus.common/jdtaus-banking-api

blz = Bankleitzahl.parse( bankCode, pos );
origin: org.jdtaus.common/jdtaus-banking-api

this.bankCode = Bankleitzahl.parse( line.substring( FIELD_TO_OFFSET[0], FIELD_TO_ENDOFFSET[0] ).trim() );
origin: org.jdtaus.banking/jdtaus-banking-utilities

r.setBankCode( Bankleitzahl.parse( field( line, FIELD_TO_OFFSET[0], FIELD_TO_ENDOFFSET[0] ) ) );
org.jdtaus.bankingBankleitzahlparse

Javadoc

Parses text from the beginning of the given string to produce a Bankleitzahl.

Unlike the #parse(String,ParsePosition) method this method throws a ParseException if bankCode cannot be parsed or is of invalid length.

Popular methods of Bankleitzahl

  • format
    Formats a Bankleitzahl and appends the resulting text to the given string buffer.
  • valueOf
    Parses text from the beginning of the given string to produce a Bankleitzahl. Unlike the #parse(Stri
  • checkBankleitzahl
    Checks a given number to conform to a Bankleitzahl.
  • compareTo
    Compares this object with the specified object for order. Returns a negative integer, zero, or a pos
  • <init>
    Creates a new Bankleitzahl instance.
  • equals
    Indicates whether some other object is equal to this one.
  • getCache
    Gets the current cache instance.
  • getClearingAreaCode
    Gets the clearing area code of this Bankleitzahl. 1. Berlin, Brandenburg, Mecklenburg-Vorpommern
  • hashCode
    Returns a hash code value for this object.
  • intValue
    Returns this Bankleitzahl as an int value.
  • internalString
    Creates a string representing the properties of the instance.
  • isClearingAreaCodeSupported
    Gets a flag indicating that this Bankleitzahl provides a clearing area code.
  • internalString,
  • isClearingAreaCodeSupported,
  • isLocalityCodeSupported,
  • isNetworkCodeSupported,
  • longValue,
  • toDigits

Popular in Java

  • Creating JSON documents from java classes using gson
  • putExtra (Intent)
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JOptionPane (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now