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

com.qcloud.cos.model.lifecycle.LifecycleNAryOperator Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.lifecycle;

import java.util.List;

/**
 *  Abstract class representing an operator that acts on N number of predicates.
 */
abstract class LifecycleNAryOperator extends LifecycleFilterPredicate {

    private final List operands;

    public LifecycleNAryOperator(List operands) {
        this.operands = operands;
    }

    public List getOperands() {
        return operands;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy