28 lines
460 B
Plaintext
Executable File
28 lines
460 B
Plaintext
Executable File
package com.fp.frontend.webservices.impl;
|
|
|
|
public enum InstitucionSnapEnum {
|
|
|
|
CRIMINALISTICA("CRIMINALISTICA"),
|
|
MINISTERIO_MINAS("MINERIA"),
|
|
COPS("COPS"),
|
|
FISCALIA_GENERAL("FGE");
|
|
|
|
private String nombre;
|
|
|
|
private InstitucionSnapEnum(String nombre) {
|
|
this.nombre = nombre;
|
|
}
|
|
|
|
/**
|
|
* @return the nombre
|
|
*/
|
|
public String getNombre() {
|
|
return nombre;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return this.nombre;
|
|
}
|
|
}
|