All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.intocps.maestro.interpreter.extensions.ArrayUtilLifecycleHandler Maven / Gradle / Ivy

The newest version!
package org.intocps.maestro.interpreter.extensions;

import com.spencerwi.either.Either;
import org.intocps.maestro.interpreter.api.IValueLifecycleHandler;
import org.intocps.maestro.interpreter.values.Value;
import org.intocps.maestro.interpreter.values.utilities.ArrayUtilValue;

import java.util.List;

@IValueLifecycleHandler.ValueLifecycle(name = "ArrayUtil")
public  class ArrayUtilLifecycleHandler extends BaseLifecycleHandler {
    @Override
    public Either instantiate(List args) {
        return Either.right(new ArrayUtilValue());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy