Hi guys!
I have some classes that i have to write javadocs to. So, there are some methods that return success, like:
public string do smth(){ if () {return SUCCESS;} else {return (something else, in this case some INPUT);} }
What is this SUCCESS and INPUT? They are not variables, for no such variables were initialized. Is success something similar to true? By the method type it should be a string, but such string wasnt initialized, so im confused, please help.
Sorry if i posted this in some wrong place.