Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix java doc issues #14

Merged
merged 1 commit into from
Sep 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public boolean booleanValue() {
/**
* Get the string value.
* @return string value
* @param parent
* @param parent The link to the parent node
*/
public String stringValue(BLink parent) {
if (this.valueKind != DecimalValueKind.OTHER) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public BType getIteratorNextReturnType() {

/**
* {@inheritDoc}
* @param parent
* @param parent The link to the parent node
*/
public String stringValue(BLink parent) {
return "stream <" + getType().toString() + ">";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ public String toString() {

/**
* {@inheritDoc}
* @param parent
* @param parent The link to the parent node
*/
@Override
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ public String toString() {

/**
* {@inheritDoc}
* @param parent
* @param parent The link to the parent node
*/
@Override
public String stringValue(BLink parent) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public class StringUtils {
* Returns the human-readable string value of Ballerina values.
*
* @param value The value on which the function is invoked
* @param parent The link to the parent node
* @return String value of the value
*/
public static String getStringValue(Object value, BLink parent) {
Expand Down