com.caoccao.javet.interop.converters.JavetConverterConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javet-macos Show documentation
Show all versions of javet-macos Show documentation
Javet is Java + V8 (JAVa + V + EighT). It is an awesome way of embedding Node.js and V8 in Java.
/*
* Copyright (c) 2021-2022. caoccao.com Sam Cao
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.caoccao.javet.interop.converters;
import com.caoccao.javet.interop.proxy.IJavetDynamicObjectFactory;
/**
* The type Javet converter config.
*
* @param the type parameter
* @since 0.9.4
*/
public class JavetConverterConfig> {
/**
* The constant DEFAULT_MAX_DEPTH.
*
* @since 0.9.4
*/
public static final int DEFAULT_MAX_DEPTH = 20;
/**
* The Default boolean.
*
* @since 0.9.4
*/
protected boolean defaultBoolean;
/**
* The Default byte.
*
* @since 0.9.4
*/
protected byte defaultByte;
/**
* The Default char.
*
* @since 0.9.4
*/
protected char defaultChar;
/**
* The Default double.
*
* @since 0.9.4
*/
protected double defaultDouble;
/**
* The Default float.
*
* @since 0.9.4
*/
protected float defaultFloat;
/**
* The Default int.
*
* @since 0.9.4
*/
protected int defaultInt;
/**
* The Default long.
*
* @since 0.9.4
*/
protected long defaultLong;
/**
* The Default short.
*
* @since 0.9.4
*/
protected short defaultShort;
/**
* The Dynamic object factory.
*
* @since 2.0.1
*/
protected IJavetDynamicObjectFactory dynamicObjectFactory;
/**
* The Extract function source code.
*
* @since 0.9.4
*/
protected boolean extractFunctionSourceCode;
/**
* The Max depth.
*
* @since 0.9.3
*/
protected int maxDepth;
/**
* The Proxy map enabled.
*
* @since 0.9.6
*/
protected boolean proxyMapEnabled;
/**
* The Proxy set enabled.
*
* @since 0.9.8
*/
protected boolean proxySetEnabled;
/**
* This flag determines whether function should be skipped in object or not.
*
* @since 0.9.4
*/
protected boolean skipFunctionInObject;
/**
* Instantiates a new Javet converter config.
*
* @since 0.9.4
*/
public JavetConverterConfig() {
defaultBoolean = false;
defaultByte = (byte) 0;
defaultChar = '\0';
defaultDouble = 0D;
defaultFloat = 0F;
defaultInt = 0;
defaultLong = 0L;
defaultShort = 0;
dynamicObjectFactory = null;
extractFunctionSourceCode = false;
maxDepth = DEFAULT_MAX_DEPTH;
proxyMapEnabled = false;
skipFunctionInObject = true;
}
/**
* Gets default boolean boolean.
*
* @return the boolean
* @since 0.9.4
*/
public boolean getDefaultBoolean() {
return defaultBoolean;
}
/**
* Gets default byte.
*
* @return the default byte
* @since 0.9.4
*/
public byte getDefaultByte() {
return defaultByte;
}
/**
* Gets default char.
*
* @return the default char
* @since 0.9.4
*/
public char getDefaultChar() {
return defaultChar;
}
/**
* Gets default double.
*
* @return the default double
* @since 0.9.4
*/
public double getDefaultDouble() {
return defaultDouble;
}
/**
* Gets default float.
*
* @return the default float
* @since 0.9.4
*/
public float getDefaultFloat() {
return defaultFloat;
}
/**
* Gets default int.
*
* @return the default int
* @since 0.9.4
*/
public int getDefaultInt() {
return defaultInt;
}
/**
* Gets default long.
*
* @return the default long
* @since 0.9.4
*/
public long getDefaultLong() {
return defaultLong;
}
/**
* Gets default short.
*
* @return the default short
* @since 0.9.4
*/
public short getDefaultShort() {
return defaultShort;
}
public IJavetDynamicObjectFactory getDynamicObjectFactory() {
return dynamicObjectFactory;
}
/**
* Gets max depth.
*
* @return the max depth
* @since 0.9.3
*/
public int getMaxDepth() {
return maxDepth;
}
/**
* Is extract function source code boolean.
*
* @return the boolean
* @since 0.9.4
*/
public boolean isExtractFunctionSourceCode() {
return extractFunctionSourceCode;
}
/**
* Is proxy map enabled.
*
* @return the boolean
* @since 0.9.6
*/
public boolean isProxyMapEnabled() {
return proxyMapEnabled;
}
/**
* Is proxy set enabled.
*
* @return the boolean
* @since 0.9.8
*/
public boolean isProxySetEnabled() {
return proxySetEnabled;
}
/**
* Is skip functions boolean.
*
* @return the boolean
* @since 0.9.4
*/
public boolean isSkipFunctionInObject() {
return skipFunctionInObject;
}
/**
* Sets default boolean.
*
* @param defaultBoolean the default boolean
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultBoolean(boolean defaultBoolean) {
this.defaultBoolean = defaultBoolean;
return this;
}
/**
* Sets default byte.
*
* @param defaultByte the default byte
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultByte(byte defaultByte) {
this.defaultByte = defaultByte;
return this;
}
/**
* Sets default char.
*
* @param defaultChar the default char
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultChar(char defaultChar) {
this.defaultChar = defaultChar;
return this;
}
/**
* Sets default double.
*
* @param defaultDouble the default double
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultDouble(double defaultDouble) {
this.defaultDouble = defaultDouble;
return this;
}
/**
* Sets default float.
*
* @param defaultFloat the default float
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultFloat(float defaultFloat) {
this.defaultFloat = defaultFloat;
return this;
}
/**
* Sets default int.
*
* @param defaultInt the default int
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultInt(int defaultInt) {
this.defaultInt = defaultInt;
return this;
}
/**
* Sets default long.
*
* @param defaultLong the default long
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultLong(long defaultLong) {
this.defaultLong = defaultLong;
return this;
}
/**
* Sets default short.
*
* @param defaultShort the default short
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setDefaultShort(short defaultShort) {
this.defaultShort = defaultShort;
return this;
}
public void setDynamicObjectFactory(IJavetDynamicObjectFactory dynamicObjectFactory) {
this.dynamicObjectFactory = dynamicObjectFactory;
}
/**
* Sets extract function source code.
*
* @param extractFunctionSourceCode the extract function source code
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setExtractFunctionSourceCode(boolean extractFunctionSourceCode) {
this.extractFunctionSourceCode = extractFunctionSourceCode;
return this;
}
/**
* Sets max depth.
*
* @param maxDepth the max depth
* @return the self
* @since 0.9.3
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setMaxDepth(int maxDepth) {
this.maxDepth = maxDepth;
return this;
}
/**
* Sets proxy map enabled.
*
* @param proxyMapEnabled the proxy map enabled
* @return the self
* @since 0.9.6
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setProxyMapEnabled(boolean proxyMapEnabled) {
this.proxyMapEnabled = proxyMapEnabled;
return this;
}
/**
* Sets proxy set enabled.
*
* @param proxySetEnabled the proxy set enabled
* @return the self
* @since 0.9.8
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setProxySetEnabled(boolean proxySetEnabled) {
this.proxySetEnabled = proxySetEnabled;
return this;
}
/**
* Sets skip functions.
*
* @param skipFunctionInObject the skip functions
* @return the self
* @since 0.9.4
*/
@SuppressWarnings("UnusedReturnValue")
public JavetConverterConfig setSkipFunctionInObject(boolean skipFunctionInObject) {
this.skipFunctionInObject = skipFunctionInObject;
return this;
}
}