com.spss.psapi.runtime

Interface OperatorSet



  • public interface OperatorSet
    This defines a set of operators.
    Since:
    PSAPI 18.1
    Version:
    1.0
    Author:
    Julian Clinton
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface and Description
      static interface  OperatorSet.Builder 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      java.util.List<java.lang.String> getCategories()
      Returns a list of all categories listed by operators.
      Operator getOperator(java.lang.String name)
      Returns the operator from this operator set that has the specified name or null if there is no such operator.
      java.util.List<Operator> getOperators()
      Returns the operators in this operator set.
      java.util.List<Operator> getOperators(java.lang.String category)
      Returns the operators in this operator set with the specified category.
    • Method Detail

      • getOperators

        java.util.List<Operator> getOperators()
        Returns the operators in this operator set.
        Returns:
        the operators in this operator set
      • getOperators

        java.util.List<Operator> getOperators(java.lang.String category)
        Returns the operators in this operator set with the specified category.
        Parameters:
        category - the category
        Returns:
        the operators in this operator set with the specified category
      • getOperator

        Operator getOperator(java.lang.String name)
        Returns the operator from this operator set that has the specified name or null if there is no such operator.
        Parameters:
        name - the operator name
        Returns:
        the operator
      • getCategories

        java.util.List<java.lang.String> getCategories()
        Returns a list of all categories listed by operators. The categories are ordered by the operator that first declared them.
        Returns:
        a list of all categories

(C) Copyright IBM Corp. 1994, 2015. All Rights Reserved.