All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.deepl.api.Formality Maven / Gradle / Ivy

The newest version!
// Copyright 2022 DeepL SE (https://www.deepl.com)
// Use of this source code is governed by an MIT
// license that can be found in the LICENSE file.
package com.deepl.api;

/** Desired level of formality for translation. */
public enum Formality {
  /** Standard level of formality. */
  Default,

  /** Less formality, i.e. more informal. */
  Less,

  /** Increased formality. */
  More,

  /**
   * Less formality, i.e. more informal, if available for the specified target language, otherwise
   * default.
   */
  PreferLess,

  /** Increased formality, if available for the specified target language, otherwise default. */
  PreferMore,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy