com.azure.maps.traffic.models.TrafficFlowSegmentStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-maps-traffic Show documentation
Show all versions of azure-maps-traffic Show documentation
This package contains Microsoft Azure SDK for Traffic Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Maps Traffic REST APIs. Package tag 1.0-preview.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.maps.traffic.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for TrafficFlowSegmentStyle. */
public final class TrafficFlowSegmentStyle extends ExpandableStringEnum {
/** Static value absolute for TrafficFlowSegmentStyle. */
public static final TrafficFlowSegmentStyle ABSOLUTE = fromString("absolute");
/** Static value relative for TrafficFlowSegmentStyle. */
public static final TrafficFlowSegmentStyle RELATIVE = fromString("relative");
/** Static value relative-delay for TrafficFlowSegmentStyle. */
public static final TrafficFlowSegmentStyle RELATIVE_DELAY = fromString("relative-delay");
/**
* Creates or finds a TrafficFlowSegmentStyle from its string representation.
*
* @param name a name to look for.
* @return the corresponding TrafficFlowSegmentStyle.
*/
@JsonCreator
public static TrafficFlowSegmentStyle fromString(String name) {
return fromString(name, TrafficFlowSegmentStyle.class);
}
/**
* Gets known TrafficFlowSegmentStyle values.
*
* @return known TrafficFlowSegmentStyle values.
*/
public static Collection values() {
return values(TrafficFlowSegmentStyle.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy