org.camunda.bpm.dmn.engine
Interface DmnDecision

All Known Implementing Classes:
DmnDecisionTableImpl

public interface DmnDecision

A decision of the DMN Engine.

Decisions can be implement in different ways. To check if the decision is implemented as a Decision Table see isDecisionTable().


Method Summary
 String getKey()
          The unique identifier of the element if exists.
 String getName()
          The human readable name of the element if exists.
 boolean isDecisionTable()
          Check if the decision is implemented as Decision Table.
 

Method Detail

getKey

String getKey()
The unique identifier of the element if exists.

Returns:
the identifier or null if not set

getName

String getName()
The human readable name of the element if exists.

Returns:
the name or null if not set

isDecisionTable

boolean isDecisionTable()
Check if the decision is implemented as Decision Table.

Returns:
true if the decision is implement as Decision Table, false otherwise


Copyright © 2016 camunda services GmbH. All rights reserved.