Package | Description |
---|---|
metricapp.dto |
This package is intended to contain DTO, objects, almost always serializable, that can travel through different protocols.
|
metricapp.entity |
This package includes Entity used by controllers of business logic.
|
metricapp.service.spec.repository |
Modifier and Type | Field and Description |
---|---|
State |
MetadataDTO.state |
Modifier and Type | Field and Description |
---|---|
private State |
Element.state |
Modifier and Type | Method and Description |
---|---|
static State |
State.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
State.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
QuestionRepository.countByStateAndCreatorId(State state,
java.lang.String id) |
java.lang.Long |
MeasurementGoalRepository.countByStateAndMetricatorId(State state,
java.lang.String id) |
java.lang.Long |
MetricRepository.countByStateAndMetricatorId(State state,
java.lang.String id) |
java.util.ArrayList<Metric> |
MetricRepository.findByState(State state) |
java.util.ArrayList<Question> |
QuestionRepository.findByState(State state) |
java.util.ArrayList<Question> |
QuestionRepository.findByStateAndCreatorId(State state,
java.lang.String id) |
java.util.ArrayList<MeasurementGoal> |
MeasurementGoalRepository.findByStateAndMetricatorId(State state,
java.lang.String id) |
java.util.ArrayList<Metric> |
MetricRepository.findByStateAndMetricatorId(State state,
java.lang.String id) |