public enum GDPRArea extends java.lang.Enum<GDPRArea>
Note: While the GDPR applies to all areas listed, this enum does not encompass all global data protection laws. Other countries may have their own regulations, sometimes influenced by the GDPR.
Enum Constant and Description |
---|
AT |
BE |
BG |
CY |
CZ |
DE |
DK |
EE |
ES |
EU |
FI |
FR |
GR |
HR |
HU |
IE |
IT |
LT |
LU |
LV |
MT |
NL |
PL |
PT |
RO |
SE |
SI |
SK |
Modifier and Type | Method and Description |
---|---|
static GDPRArea |
fromCode(java.lang.String code)
Retrieves the
GDPRArea enum value corresponding to the given ISO 3166-1 alpha-2 code. |
java.lang.String |
getAreaName()
Returns the full name of the area, i.e. the full name of the country or "European Union".
|
java.lang.String |
getCode()
Returns the ISO 3166-1 alpha-2 code of the country or "EU" for the European Union.
|
static java.util.List<java.lang.String> |
getValidCodes()
Returns a list of valid codes.
|
static GDPRArea |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GDPRArea[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GDPRArea EU
public static final GDPRArea AT
public static final GDPRArea BE
public static final GDPRArea BG
public static final GDPRArea HR
public static final GDPRArea CY
public static final GDPRArea CZ
public static final GDPRArea DK
public static final GDPRArea EE
public static final GDPRArea FI
public static final GDPRArea FR
public static final GDPRArea DE
public static final GDPRArea GR
public static final GDPRArea HU
public static final GDPRArea IE
public static final GDPRArea IT
public static final GDPRArea LV
public static final GDPRArea LT
public static final GDPRArea LU
public static final GDPRArea MT
public static final GDPRArea NL
public static final GDPRArea PL
public static final GDPRArea PT
public static final GDPRArea RO
public static final GDPRArea SK
public static final GDPRArea SI
public static final GDPRArea ES
public static final GDPRArea SE
public static GDPRArea[] values()
for (GDPRArea c : GDPRArea.values()) System.out.println(c);
public static GDPRArea valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getCode()
public java.lang.String getAreaName()
public static GDPRArea fromCode(java.lang.String code)
GDPRArea
enum value corresponding to the given ISO 3166-1 alpha-2 code.code
- the enum name (e.g., "EU", "AT")GDPRArea
enum value, or null
if no match is foundpublic static java.util.List<java.lang.String> getValidCodes()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.