-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneratorCurrencies.bat
More file actions
68 lines (68 loc) · 1.49 KB
/
generatorCurrencies.bat
File metadata and controls
68 lines (68 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@echo off
rem Generate Java class source from tld text file.
rem
rem $0 script
rem $1 Path to downloaded file
setlocal ENABLEDELAYEDEXPANSION
pushd %~dp0
echo /*
echo * Code generator Copyright (C) 2020-2025 Dipl.-Inform. Kai Hofmann. All rights reserved!
echo */
echo package de.powerstat.ddd.generated;
echo:
echo:
echo import java.util.HashSet;
echo import java.util.Set;
echo import java.util.Locale;
echo:
echo:
echo /**
echo * ISO 4217.
echo */
echo public final class GeneratedISO4217
echo {
echo /**
echo * ISO 4217 code list.
echo */
echo private static final Set^<String^> CODES = new HashSet^<^>();
echo:
echo:
echo /**
echo * Static initialization.
echo */
echo static
echo {
FOR /F "usebackq tokens=3,4 delims=," %%i IN (`findstr /R ",[A-Z][A-Z][A-Z]," %1`) DO (
set t=%%i
if "!t!"=="!t: =!" (
echo CODES.add("%%i".toLowerCase(Locale.getDefault(^)^)^); //$NON-NLS-1$
) else (
echo CODES.add("%%j".toLowerCase(Locale.getDefault(^)^)^); //$NON-NLS-1$
)
)
echo }
echo:
echo:
echo /**
echo * Private default constructor.
echo */
echo private GeneratedISO4217()
echo {
echo super();
echo }
echo:
echo:
echo /**
echo * Check if ISO 4217 code exists.
echo *
echo * @param code Code to check
echo * @return true if code exists, false otherwise
echo */
echo public static boolean contains(final String code)
echo {
echo return CODES.contains(code.toLowerCase(Locale.getDefault()));
echo }
echo:
echo }
popd
endlocal