AIMA.Core.Logic.FOL.Parsing.AST.Constant.getValue C# (CSharp) Method

getValue() public method

public getValue ( ) : String
return String
        public String getValue()
        {
            return value;
        }

Usage Example

Beispiel #1
0
        // END-Term
        //

        public override bool Equals(Object o)
        {
            if (this == o)
            {
                return(true);
            }
            if (!(o is Constant))
            {
                return(false);
            }
            Constant c = (Constant)o;

            return(c.getValue().Equals(getValue()));
        }