-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneratorTLD.bat
64 lines (64 loc) · 1.39 KB
/
generatorTLD.bat
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
@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 Dipl.-Inform. Kai Hofmann. All rights reserved!
echo */
echo package de.powerstat.validation.generated;
echo:
echo:
echo import java.util.HashSet;
echo import java.util.Set;
echo import java.util.Locale;
echo:
echo:
echo /**
echo * Top level domains.
echo */
echo public final class GeneratedTlds
echo {
echo /**
echo * Top level domain list.
echo */
echo private static final Set^<String^> TOP_LEVEL_DOMAINS = new HashSet^<^>();
echo:
echo:
echo /**
echo * Static initialization.
echo */
echo static
echo {
FOR /F "usebackq" %%i IN (`findstr /v # %1`) DO (
echo TOP_LEVEL_DOMAINS.add("%%i".toLowerCase(Locale.getDefault(^)^)^); //$NON-NLS-1$
)
echo }
echo:
echo:
echo /**
echo * Private default constructor.
echo */
echo private GeneratedTlds()
echo {
echo super();
echo }
echo:
echo:
echo /**
echo * Check if top level domain exists.
echo *
echo * @param tld Top level domain to check
echo * @return true if top level domain exists, false otherwise
echo */
echo public static boolean contains(final String tld)
echo {
echo return TOP_LEVEL_DOMAINS.contains(tld.toLowerCase(Locale.getDefault()));
echo }
echo:
echo:
echo }
popd
endlocal