[OLINGO-1406] added some toString() methods (#26)

General and minor improvement during release
This commit is contained in:
luca-vercelli 2019-11-27 08:34:30 +01:00 committed by mibo
parent a110e09203
commit 2df6c17799
3 changed files with 15 additions and 0 deletions

View File

@ -136,4 +136,9 @@ public class EntityCollection extends AbstractEntityCollection {
result = 31 * result + (deltaLink == null ? 0 : deltaLink.hashCode());
return result;
}
@Override
public String toString() {
return entities.toString();
}
}

View File

@ -35,4 +35,10 @@ public abstract class AbstractEdmNamed extends AbstractEdmAnnotatable implements
public String getName() {
return name;
}
@Override
public String toString() {
return name;
}
}

View File

@ -78,4 +78,8 @@ public class UriParameterImpl implements UriParameter {
return this;
}
@Override
public String toString() {
return name;
}
}