public enum Action extends Enum<Action>
| Enum Constant and Description |
|---|
CHECK
Action to check the status or consistency of properties or translations,
ensuring that the data adheres to expected rules or configurations.
|
EXPORT
Action for export of data to be translated, from source language properties files, specified by Json Configuration file,
through Json DataFile into Google sheet specified by ID.
|
IMPORT
Action for import of translated data from Google sheet specified by ID, through Json DataFile into language properties files,
according to given Json Configuration file.
|
| Modifier and Type | Method and Description |
|---|---|
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action EXPORT
public static final Action IMPORT
public static final Action CHECK
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 FG Forrest, a.s.. All rights reserved.