How to check if a value coincide with any enum value?
I want to detect if a input values of a vector coincide with any value of a enum, I just got what detect if are entered in order, but I don't mind the order. (The same order what I declared the enum values).
```java
import java.util.Scanner;
public class EnumsNames{
Scanner key=new Scanner(System.in);
public void ENames(){
enum Names{
Alejandra,Leonardo,Rosa,Guillermo,Gabriel,Daniel,Luisa,Ludmila
}
String[] name=new String[8];
for(int n=0;n<name.length;n++){
boolean valid=false;
while(!valid){
System.out.println("Input a name:");
name[n]=key.next();
// In this if are my problem
if(name[n].equals(Names.values()[n].toString())){
valid=true;
}else{
System.out.println("Invalid name");
}
}
}
}
6 Replies
⌛
This post has been reserved for your question.
Hey @Franscis123$#! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
So baiscally you have a string and want the enum value of it if there is one
like this
and then you want the enum value of the string
there you go
method
is also equal to
So, In Names.valueOf(input); "input" would be the vector in my case?
idk what you mean
Unknown User•9mo ago
Message Not Public
Sign In & Join Server To View
mb should have done it in an ide 😄