Package br.com.setis.interfaceautomacao
Enum Class ViasImpressao
- All Implemented Interfaces:
Serializable
,Comparable<ViasImpressao>
,Constable
Vias a serem impressas.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSomente a via para o cliente deve ser impressa.Ambas as vias devem ser impressas.Somente a via para o estabelecimento deve ser impressa.Nenhuma via deve ser impressa. -
Method Summary
Modifier and TypeMethodDescriptionint
Obtem a tag da via a ser impressastatic ViasImpressao
obtemViaImpressao
(int via) static ViasImpressao
Returns the enum constant of this class with the specified name.static ViasImpressao[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VIA_NENHUMA
Nenhuma via deve ser impressa. -
VIA_CLIENTE
Somente a via para o cliente deve ser impressa. -
VIA_ESTABELECIMENTO
Somente a via para o estabelecimento deve ser impressa. -
VIA_CLIENTE_E_ESTABELECIMENTO
Ambas as vias devem ser impressas.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
obtemTipoViaImpressao
public int obtemTipoViaImpressao()Obtem a tag da via a ser impressa- Returns:
- Tag representando a via escolhida a ser impressa
-
obtemViaImpressao
-