Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.monitor; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for QueryType.
/** * Defines values for QueryType. */
public final class QueryType extends ExpandableStringEnum<QueryType> {
Static value ResultCount for QueryType.
/** Static value ResultCount for QueryType. */
public static final QueryType RESULT_COUNT = fromString("ResultCount");
Creates or finds a QueryType from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding QueryType
/** * Creates or finds a QueryType from its string representation. * @param name a name to look for * @return the corresponding QueryType */
@JsonCreator public static QueryType fromString(String name) { return fromString(name, QueryType.class); }
Returns:known QueryType values
/** * @return known QueryType values */
public static Collection<QueryType> values() { return values(QueryType.class); } }