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

com.wavefront.slug.SlugVersion Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019 VMware, Inc.
 * SPDX-License-Identifier: Apache-2.0
 */

package com.wavefront.slug;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * Enums represents all the supported slug versions.
 */
@Getter
@AllArgsConstructor
public enum SlugVersion {
  @Deprecated
  V1("_v01"),
  V2("_v02");

  private final String versionStr;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy