![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.GroupsSelect Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.authorization.fluent.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Defines values for GroupsSelect.
*/
public final class GroupsSelect extends ExpandableStringEnum {
/**
* Static value id for GroupsSelect.
*/
public static final GroupsSelect ID = fromString("id");
/**
* Static value deletedDateTime for GroupsSelect.
*/
public static final GroupsSelect DELETED_DATE_TIME = fromString("deletedDateTime");
/**
* Creates a new instance of GroupsSelect value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public GroupsSelect() {
}
/**
* Creates or finds a GroupsSelect from its string representation.
*
* @param name a name to look for.
* @return the corresponding GroupsSelect.
*/
public static GroupsSelect fromString(String name) {
return fromString(name, GroupsSelect.class);
}
/**
* Gets known GroupsSelect values.
*
* @return known GroupsSelect values.
*/
public static Collection values() {
return values(GroupsSelect.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy