public enum TipoColegiado extends Enum<TipoColegiado>
| Modifier and Type | Method and Description |
|---|---|
String |
getDescricao() |
static TipoColegiado |
parse(String valueOf) |
static TipoColegiado |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TipoColegiado[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TipoColegiado COMISSAO
public static final TipoColegiado PLENARIO
public static TipoColegiado[] values()
for (TipoColegiado c : TipoColegiado.values()) System.out.println(c);
public static TipoColegiado valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static TipoColegiado parse(String valueOf)
public String getDescricao()
Copyright © 2023 LexML. All rights reserved.