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

com.geotab.model.entity.source.SourceAiModel Maven / Gradle / Ivy

/*
 *
 * 2020 Copyright (C) Geotab Inc. All rights reserved.
 */

package com.geotab.model.entity.source;

import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
 * Specifies that the data originated from the AI Model.
 */
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public final class SourceAiModel extends Source {

  private static class InstanceHolder {

    private static final SourceAiModel INSTANCE = new SourceAiModel();
  }

  public static final String SOURCE_AI_MODEL_ID = "SourceAIModelId";

  private SourceAiModel() {
    super(SOURCE_AI_MODEL_ID, "**AI Model");
  }

  public static SourceAiModel getInstance() {
    return InstanceHolder.INSTANCE;
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy