Azavea.Open.DAO.Criteria.Joins.DaoJoinCriteria.ToString C# (CSharp) Method

ToString() public method

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return TypeOfJoin + " JOIN, expressions: " + StringHelper.Join(Expressions) + " (" +
                   BoolType + "ed), orders: " + StringHelper.Join(Orders) + ", where LEFT: " +
                   LeftCriteria + " and RIGHT: " + RightCriteria;
        }