Modalidad.java 534 Bytes
Newer Older
1 2 3 4 5
package com.roshka.modelo;

import com.fasterxml.jackson.annotation.JsonValue;

public enum Modalidad {
6
    PRESENCIAL("P","Presencial"), SEMIPRESENCIAL("S","Semi Presencial"), REMOTO("R","Remoto");
7 8

    private String code;
9
    private String descripcion;
10

11
    private Modalidad(String code, String descripcion) {
12
        this.code = code;
13
        this.descripcion = descripcion;
14 15 16 17 18 19
    }

    @JsonValue
    public String getCode() {
        return code;
    }
20 21 22 23

    public String getDescripcion() {
        return descripcion;
    }
24
}