public enum TipoAutoria extends Enum<TipoAutoria>
| Enum Constant and Description |
|---|
CASA_LEGISLATIVA |
COMISSAO |
NAO_IDENTIFICADO |
PARLAMENTAR |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescricao() |
static TipoAutoria |
parse(String tipo) |
static TipoAutoria |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TipoAutoria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TipoAutoria NAO_IDENTIFICADO
public static final TipoAutoria PARLAMENTAR
public static final TipoAutoria COMISSAO
public static final TipoAutoria CASA_LEGISLATIVA
public static TipoAutoria[] values()
for (TipoAutoria c : TipoAutoria.values()) System.out.println(c);
public static TipoAutoria 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 TipoAutoria parse(String tipo)
public String getDescricao()
Copyright © 2023 LexML. All rights reserved.