Skip to main content
Skip table of contents

isEmptyKey

Versionshinweise

12.1

Code

GROOVY
boolean LookupUtils.isEmptyKey(Serializable value)

Beschreibung

Prüft, ob der übergebene Wert eine Leerschlüssel ist.

Parameter

  • value - Der zu prüfende Werte.

Rückgabe

Gibt true zurück, wenn der übergebene Wert eine Leerschlüssel ist. Ansonsten false.

Beispiele

GROOVY
LookupUtils.isEmptyKey(FieldUtils.getValue("DefaultContactPerson.Activity"));
LookupUtils.isEmptyKey(LookupUtils.EMPTY_KEY); // true
LookupUtils.isEmptyKey(LookupUtils.EMPTY_KEY_NUM); // true
LookupUtils.isEmptyKey("?"); // true
LookupUtils.isEmptyKey(0); // true
LookupUtils.isEmptyKey("#EMPTY-KEY#"); // true
LookupUtils.isEmptyKey("#EMTPY-KEY-NUM#"); // true
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.