- asBoolean() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts current value to a boolean value.
- asBoolean(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified position to a boolean value.
- asBoolean(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified property to a boolean value.
- asDouble() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts current value to a double value.
- asDouble(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified position to a double value.
- asDouble(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified property to a double value.
- asInt() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts current value to an integer value.
- asInt(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified position to an integer value.
- asInt(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified property to an integer value.
- asList(Class<T>) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts current ARRAY container to List.
- asMap(Class<T>) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts current OBJECT container to Map.
- asString() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts current value to a string value.
- asString(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified position to a string value.
- asString(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Converts value, which is located in the specified property to a string value.
- indexOf(Object) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
This method has two different algorithms depending on the current container type:
- isArray(Object) - Static method in class com.github.jshaptic.js4j.Lodash
-
Checks if value is classified as an ARRAY container.
- isArray() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is ARRAY container.
- isArray(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is ARRAY container.
- isArray(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is ARRAY container.
- isBoolean() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is BOOLEAN LITERAL container.
- isBoolean(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is BOOLEAN LITERAL container.
- isBoolean(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is BOOLEAN LITERAL container.
- isEqual(UniversalContainer, Object) - Static method in class com.github.jshaptic.js4j.Lodash
-
Performs a deep comparison between two values to determine if they are equivalent.
- isNull(Object) - Static method in class com.github.jshaptic.js4j.Lodash
-
Checks if value is classified as a NULL container.
- isNull() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is NULL container.
- isNull(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is NULL container.
- isNull(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is NULL container.
- isNumber() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is NUMBER LITERAL container.
- isNumber(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is NUMBER LITERAL container.
- isNumber(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is NUMBER LITERAL container.
- isObject(Object) - Static method in class com.github.jshaptic.js4j.Lodash
-
Checks if value is classified as an OBJECT container.
- isObject() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is OBJECT container.
- isObject(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is OBJECT, ARRAY or NULL container.
- isObject(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is OBJECT, ARRAY or NULL container.
- isString() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is STRING LITERAL container.
- isString(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is STRING LITERAL container.
- isString(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is STRING LITERAL container.
- isUndefined(Object) - Static method in class com.github.jshaptic.js4j.Lodash
-
Checks if value is classified as a UNDEFINED container.
- isUndefined() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if current container is UNDEFINED container.
- isUndefined(int) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value at specified position is UNDEFINED container.
- isUndefined(String) - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Checks if value in specified property is UNDEFINED container.
- iterator() - Method in class com.github.jshaptic.js4j.UniversalContainer
-
Creates iterator over current container values (if it's ARRAY or STRING) or keys (if OBJECT), which can be in for
statement.