Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6892437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:32:07+00:00 2026-05-27T06:32:07+00:00

I have a class called Paragens like this: public class Paragens { static int

  • 0

I have a class called Paragens like this:

public class Paragens {
    static int contadorParagens = 1;

    String nomeParagem;
    int id;

    public Paragens(String nomeParagem) {
        this.nomeParagem = nomeParagem;
        this.id = contadorParagens++;
    }

    // getters and setters for nomeParagem
}

Every Paragens object has a name and an Id.

This class has a main method where I create several Paragens objects and store them inside an ArrayList like this:

public static void main(String[] args) {
    ArrayList<Paragens> paragens = new ArrayList<Paragens>();
    paragens.add(new Paragens("name1");
    // ... add more paragens
}

This is working ok. If I insert a bunch of paragens and print them I can see tat is all ok.

What I am trying to do is to ask the user to input a paragem name and then I want to see if that paragem is already in the ArrayList.

String name;
System.out.println("Insert paragem name: ");
pickName = sc.nextLine();
System.out.println(paragens.contains(pickName));

What am I doing wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:32:08+00:00Added an answer on May 27, 2026 at 6:32 am

    contains checks to see if the list contains the actual thing you handed it. In this case, you’re passing in a String name, but comparing it to Paragem instances. contains can’t magically guess that it’s supposed to look at a given property on the Paragem instances to compare the string.

    You can easily loop the list to find out for yourself:

    boolean found = false;
    for (Paragem p : paragems) {
        if (p.nomeParagem.equals(pickName)) { // Or use an accessor function for `nomeParagem` if appropriate
            found = true;
            break;
        }
    }
    

    …or as a function:

    boolean containsParagemWithName(ArrayList<Paragem> paragems, String pickName) {
        for (Paragem p : paragems) {
            if (p.nomeParagem.equals(pickName)) {
                return true;
            }
        }
        return false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class called LocalConstants.... public static class LocalConstants { public static string
I have this class called Table: class Table { public string Name { get
I have this class called SiteAsyncDownload.cs Here's the code: public class SiteAsyncDownloader { WebClient
I have a class called MainGame, which is defined like this in my .h:
I have a base class called Entity: public class Entity { public int Id
i have this class called MemoryManager, it is supposed to implement a simple smart
I have a class called ReportRequest as: public class ReportRequest { Int32 templateId; List<Int32>
I have a class called MyClass This class inherits IEquatable and implements equals the
I have a Ruby class called LibraryItem . I want to associate with every
I have a class called Object which stores some data. I would like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.