001// SECTION-START[License Header] 002// <editor-fold defaultstate="collapsed" desc=" Generated License "> 003/* 004 * jDTAUS ⁑ ISO-13616 005 * Copyright (C) Christian Schulte, 2013-222 006 * 007 * Permission to use, copy, modify, and/or distribute this software for any 008 * purpose with or without fee is hereby granted, provided that the above 009 * copyright notice and this permission notice appear in all copies. 010 * 011 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 012 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 013 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 014 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 015 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 016 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 017 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 018 * 019 * $JDTAUS: IbanFormat.java 8901 2015-06-20 18:30:19Z schulte $ 020 * 021 */ 022// </editor-fold> 023// SECTION-END 024package org.jdtaus.iso13616; 025 026// SECTION-START[Documentation] 027// <editor-fold defaultstate="collapsed" desc=" Generated Documentation "> 028/** 029 * Format of an international bank account number. 030 * 031 * <dl> 032 * <dt><b>Identifier:</b></dt><dd>jDTAUS ⁑ ISO-13616 ⁑ IBAN Format</dd> 033 * <dt><b>Name:</b></dt><dd>jDTAUS ⁑ ISO-13616 ⁑ IBAN Format</dd> 034 * <dt><b>Abstract:</b></dt><dd>No</dd> 035 * <dt><b>Final:</b></dt><dd>Yes</dd> 036 * <dt><b>Stateless:</b></dt><dd>Yes</dd> 037 * </dl> 038 * 039 * @author <a href="mailto:cs@schulte.it">Christian Schulte</a> 040 * @version 1.1 041 */ 042// </editor-fold> 043// SECTION-END 044// SECTION-START[Annotations] 045// <editor-fold defaultstate="collapsed" desc=" Generated Annotations "> 046@javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.9", comments = "See http://www.jomc.org/jomc/1.9/jomc-tools-1.9" ) 047// </editor-fold> 048// SECTION-END 049public enum IbanFormat 050{ 051 // SECTION-START[IbanFormat] 052 053 /** Electronic format of an international bank account number. */ 054 ELECTRONIC, 055 /** Print format of an international bank account number. */ 056 PRINT; 057 058 // SECTION-END 059 // SECTION-START[Dependencies] 060 // SECTION-END 061 // SECTION-START[Properties] 062 // SECTION-END 063 // SECTION-START[Messages] 064 // SECTION-END 065}