1 // SECTION-START[License Header] 2 // <editor-fold defaultstate="collapsed" desc=" Generated License "> 3 /* 4 * jDTAUS ⁑ ISO-13616 5 * Copyright (C) Christian Schulte, 2013-222 6 * 7 * Permission to use, copy, modify, and/or distribute this software for any 8 * purpose with or without fee is hereby granted, provided that the above 9 * copyright notice and this permission notice appear in all copies. 10 * 11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 18 * 19 * $JDTAUS: IbanFormat.java 8901 2015-06-20 18:30:19Z schulte $ 20 * 21 */ 22 // </editor-fold> 23 // SECTION-END 24 package org.jdtaus.iso13616; 25 26 // SECTION-START[Documentation] 27 // <editor-fold defaultstate="collapsed" desc=" Generated Documentation "> 28 /** 29 * Format of an international bank account number. 30 * 31 * <dl> 32 * <dt><b>Identifier:</b></dt><dd>jDTAUS ⁑ ISO-13616 ⁑ IBAN Format</dd> 33 * <dt><b>Name:</b></dt><dd>jDTAUS ⁑ ISO-13616 ⁑ IBAN Format</dd> 34 * <dt><b>Abstract:</b></dt><dd>No</dd> 35 * <dt><b>Final:</b></dt><dd>Yes</dd> 36 * <dt><b>Stateless:</b></dt><dd>Yes</dd> 37 * </dl> 38 * 39 * @author <a href="mailto:cs@schulte.it">Christian Schulte</a> 40 * @version 1.1 41 */ 42 // </editor-fold> 43 // SECTION-END 44 // SECTION-START[Annotations] 45 // <editor-fold defaultstate="collapsed" desc=" Generated Annotations "> 46 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.9", comments = "See http://www.jomc.org/jomc/1.9/jomc-tools-1.9" ) 47 // </editor-fold> 48 // SECTION-END 49 public enum IbanFormat 50 { 51 // SECTION-START[IbanFormat] 52 53 /** Electronic format of an international bank account number. */ 54 ELECTRONIC, 55 /** Print format of an international bank account number. */ 56 PRINT; 57 58 // SECTION-END 59 // SECTION-START[Dependencies] 60 // SECTION-END 61 // SECTION-START[Properties] 62 // SECTION-END 63 // SECTION-START[Messages] 64 // SECTION-END 65 }