Exemplo n.º 1
0
    def comparison(self):
        """
        Returns the comparison operator as string.

        :return: the comparison iterator
        :rtype: str
        """
        return Attribute(javabridge.call(self.jobject, "getComparisonAsString", "()Ljava/lang/String;"))
Exemplo n.º 2
0
    def item_value(self):
        """
        Returns the item value as string.

        :return: the item value
        :rtype: str
        """
        return Attribute(javabridge.call(self.jobject, "getItemValueAsString", "()Ljava/lang/String;"))
Exemplo n.º 3
0
    def attribute(self):
        """
        Returns the attribute.

        :return: the attribute
        :rtype: Attribute
        """
        return Attribute(javabridge.call(self.jobject, "getAttribute", "()Lweka/core/Attribute;"))