Appearance
Wellness Level 
The Wellness Level value is sent as part of the final results.
The application can receive the Wellness Level result by implementing VitalSignsListener:
Kotlin
override fun onFinalResults(results: VitalSignsResults) {
    runOnUiThread {
        (results.getResult(VitalSignTypes.WELLNESS_LEVEL) as? VitalSignWellnessLevel)?.let { wellnessLevel ->
            Log.i("VITAL SIGN", "Wellness Level: ${wellnessLevel.value.name}")
        }
    }
}Java
@Override
public void onFinalResults(final VitalSignsResults results) {
    runOnUiThread(() -> {
        VitalSignWellnessLevel wellnessLevel = (VitalSignWellnessLevel) results.getResult(VitalSignTypes.WELLNESS_LEVEL);
        if (wellnessLevel != null) {
            Log.i("VITAL SIGN", "Wellness Level: " + wellnessLevel.getValue().name());
        }
    });
}For general information about vital signs see the Vital Signs and Health Indicators Information Page.
For a list of supported vital signs per platform and measurement mode (face/finger) see the Supported Vital Signs Page.
Important
Note that vital signs are sent on a background thread. The application must switch to the UI thread in order to perform UI updates.