From 70034affe192f60c60c90e3c0ebda0e8e6b2e22c Mon Sep 17 00:00:00 2001 From: Aleksey Chevyrov Date: Sat, 25 Apr 2026 11:14:16 +0400 Subject: [PATCH] Aspose.Tasks for Java API update to 26.4 --- .../globalizationsettings/_index.md | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 english/java/com.aspose.tasks/globalizationsettings/_index.md diff --git a/english/java/com.aspose.tasks/globalizationsettings/_index.md b/english/java/com.aspose.tasks/globalizationsettings/_index.md new file mode 100644 index 000000000..319f3ad6e --- /dev/null +++ b/english/java/com.aspose.tasks/globalizationsettings/_index.md @@ -0,0 +1,66 @@ +--- +title: GlobalizationSettings +second_title: Aspose.Tasks for Java API Reference +description: Represents the projects globalization settings. +type: docs +weight: 114 +url: /java/com.aspose.tasks/globalizationsettings/ +--- + +**Inheritance:** +java.lang.Object +``` +public class GlobalizationSettings +``` + +Represents the project's globalization settings. + +The recommended way is to use culture-invariant literals or formats throughout the project. However, if a project uses culture-specific literals, this class can be used to help the formula-calculation engine parse those literals. +## Constructors + +| Constructor | Description | +| --- | --- | +| [GlobalizationSettings()](#GlobalizationSettings--) | | +## Methods + +| Method | Description | +| --- | --- | +| [getFalseLiteral()](#getFalseLiteral--) | Gets a string for boolean 'false' literal used in a formula. | +| [getFormulaDateNA()](#getFormulaDateNA--) | Gets "NA" (empty value) literal used in a formula for a date field. | +| [getTrueLiteral()](#getTrueLiteral--) | Gets a string for boolean 'true' literal used in a formula. | +### GlobalizationSettings() {#GlobalizationSettings--} +``` +public GlobalizationSettings() +``` + + +### getFalseLiteral() {#getFalseLiteral--} +``` +public String getFalseLiteral() +``` + + +Gets a string for boolean 'false' literal used in a formula. + +**Returns:** +java.lang.String - a string for boolean 'false' literal used in a formula. +### getFormulaDateNA() {#getFormulaDateNA--} +``` +public String getFormulaDateNA() +``` + + +Gets "NA" (empty value) literal used in a formula for a date field. + +**Returns:** +java.lang.String - "NA" (empty value) literal used in a formula for a date field. +### getTrueLiteral() {#getTrueLiteral--} +``` +public String getTrueLiteral() +``` + + +Gets a string for boolean 'true' literal used in a formula. + +**Returns:** +java.lang.String - a string for boolean 'true' literal used in a formula.