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

com.mindee.parsing.common.Orientation Maven / Gradle / Ivy

The newest version!
package com.mindee.parsing.common;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Getter;

/**
 * The orientation which was applied from the original page.
 */
@Getter
@EqualsAndHashCode
@JsonIgnoreProperties(ignoreUnknown = true)

public class Orientation {

  /**
   * Degrees of the rotation.
   */
  @JsonProperty("value")
  private Integer value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy