Array reference in for loop

T

teser3

I have a validate method in a bean class that works and now I want to
condense it into a for loop.

Here is what I have:

//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}

My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:

public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}


The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.
 
G

GArlington

I have a validate method in a bean class that works and now I want to
condense it into a for loop.

Here is what I have:

//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}

My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:

public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}

The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.


Is this your actual code? Did you even try to compile it?
What does the compiler say about your line
String [] myarray = {firstname, lastname}
???
I can only guess (thanks to your selective code pasting) that
you are atempting
String [] myarray = {firstName, lastName};
or
String [] myarray = {getFirstName(), getLastName()};
 
I

IchBin

I have a validate method in a bean class that works and now I want to
condense it into a for loop.

Here is what I have:

//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}

My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:

public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}


The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.


Quick and dirty:

public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstName, lastName,
"first Name","last Name"};
for(int i=0;i < myarray.length;i++){
if (myarray.equals("")) {
errors.put(myarray + " Please enter your " +
myarray[i+2]);
allOk=false;
}
}
return allOk;
}

--
Thanks in Advance... http://weconsulting.org
IchBin, Philadelphia, Pa, USA http://ichbinquotations.weconsulting.org
______________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
 
P

Patricia Shanahan

IchBin said:
I have a validate method in a bean class that works and now I want to
condense it into a for loop.

Here is what I have:

//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}

My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:

public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}


The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.


Quick and dirty:

public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstName, lastName,
"first Name","last Name"};
for(int i=0;i < myarray.length;i++){
if (myarray.equals("")) {
errors.put(myarray + " Please enter your " +
myarray[i+2]);
allOk=false;
}
}
return allOk;
}


There are two needs for a String array, providing the labels for using
in the message and holding the input. Why not use two arrays, one for
each job?

public boolean validate()
{
boolean allOk=true;
String[] input = {firstName, lastName};
String[] labels = {"first Name","last Name"};
for(int i=0;i < input.length;i++){
if (input.equals("")) {
errors.put(input + " Please enter your " +
labels);
allOk=false;
}
}
return allOk;
}

I don't like names like "myarray", because they are often associated
with constructs that do not have a single clear purpose.

Patricia
 
D

Daniel Pitts

IchBin said:
I have a validate method in a bean class that works and now I want to
condense it into a for loop.
Here is what I have:
//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}
My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:
public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}
The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.

Quick and dirty:
public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstName, lastName,
"first Name","last Name"};
for(int i=0;i < myarray.length;i++){
if (myarray.equals("")) {
errors.put(myarray + " Please enter your " +
myarray[i+2]);
allOk=false;
}
}
return allOk;
}


There are two needs for a String array, providing the labels for using
in the message and holding the input. Why not use two arrays, one for
each job?

public boolean validate()
{
boolean allOk=true;
String[] input = {firstName, lastName};
String[] labels = {"first Name","last Name"};
for(int i=0;i < input.length;i++){
if (input.equals("")) {
errors.put(input + " Please enter your " +
labels);
allOk=false;
}
}
return allOk;
}

I don't like names like "myarray", because they are often associated
with constructs that do not have a single clear purpose.

Patricia


I don't like parallel arrays myself, and I don't think this is a job
for an array actually.

public void validateHelper(String fieldName, String fieldValue, String
message) {
if (fieldValue == null || fieldValue.equals("")) {
errors.put(fieldName, fieldMessage);
}
}

public void validate() {
validateHelper("firstName", firstName, "Please enter your first
name.");
validateHelper("lastName", lastName, "Please enter your last
name.");
}
 
P

Patricia Shanahan

Daniel said:
IchBin said:
(e-mail address removed) wrote:

I have a validate method in a bean class that works and now I want to
condense it into a for loop.
Here is what I have:
//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}
My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:
public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}

The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.
Quick and dirty:
public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstName, lastName,
"first Name","last Name"};
for(int i=0;i < myarray.length;i++){
if (myarray.equals("")) {
errors.put(myarray + " Please enter your " +
myarray[i+2]);
allOk=false;
}
}
return allOk;
}


There are two needs for a String array, providing the labels for using
in the message and holding the input. Why not use two arrays, one for
each job?

public boolean validate()
{
boolean allOk=true;
String[] input = {firstName, lastName};
String[] labels = {"first Name","last Name"};
for(int i=0;i < input.length;i++){
if (input.equals("")) {
errors.put(input + " Please enter your " +
labels);
allOk=false;
}
}
return allOk;
}

I don't like names like "myarray", because they are often associated
with constructs that do not have a single clear purpose.

Patricia



I don't like parallel arrays myself, and I don't think this is a job
for an array actually.

public void validateHelper(String fieldName, String fieldValue, String
message) {
if (fieldValue == null || fieldValue.equals("")) {
errors.put(fieldName, fieldMessage);
}
}

public void validate() {
validateHelper("firstName", firstName, "Please enter your first
name.");
validateHelper("lastName", lastName, "Please enter your last
name.");
}


Yes, that is a better design.

Patricia
 
C

cyprian

Daniel said:
IchBin wrote:
(e-mail address removed) wrote:
I have a validate method in a bean class that works and now I want to
condense it into a for loop.
Here is what I have:
//firstname and lastname are declared earlier
public boolean validate()
{
boolean allOk=true;
if (firstName.equals("")) {
errors.put("firstName","Please enter your first name");
allOk=false;
}
if (lastName.equals("")) {
errors.put("lastName","Please enter your last name");
allOk=false;
}
return allOk;
}
My attempt doesnt work because I cant seem to figure out how to put
the array reference in the key part of the errors.put method:
public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstname, lastname}
for(int i=0;i < myarray.length;i++)
{
if (myarray.equals("")) {
errors.put(myarray,"Please enter your " + myarray);
allOk=false;
}
}
return allOk;
}
The results dont validate any of my data so I assume I have something
wrong with my array. Please advise.
Quick and dirty:
public boolean validate()
{
boolean allOk=true;
String [] myarray = {firstName, lastName,
"first Name","last Name"};
for(int i=0;i < myarray.length;i++){
if (myarray.equals("")) {
errors.put(myarray + " Please enter your " +
myarray[i+2]);
allOk=false;
}
}
return allOk;
}
There are two needs for a String array, providing the labels for using
in the message and holding the input. Why not use two arrays, one for
each job?
public boolean validate()
{
boolean allOk=true;
String[] input = {firstName, lastName};
String[] labels = {"first Name","last Name"};
for(int i=0;i < input.length;i++){
if (input.equals("")) {
errors.put(input + " Please enter your " +
labels);
allOk=false;
}
}
return allOk;
}
I don't like names like "myarray", because they are often associated
with constructs that do not have a single clear purpose.
Patricia

I don't like parallel arrays myself, and I don't think this is a job
for an array actually.
public void validateHelper(String fieldName, String fieldValue, String
message) {
if (fieldValue == null || fieldValue.equals("")) {
errors.put(fieldName, fieldMessage);
}
}
public void validate() {
validateHelper("firstName", firstName, "Please enter your first
name.");
validateHelper("lastName", lastName, "Please enter your last
name.");
}

Yes, that is a better design.

Patricia


there is nothing wrong with your array if firstname and secondname are
visible. See if the problem is with the strings you're passing the put
method. Maybe do String toPut = "the words"+myArray;
then make one of put's parameters toPut rather than that string
literal.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,128
Latest member
ElwoodPhil
Top