blob: 8fc69ba4926f67690cd855368336d3a4d38b5337 [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.aria.client;
/////////////////////////////////////////////////////////
// This is auto-generated code. Do not manually edit! //
/////////////////////////////////////////////////////////
/**
* Property enum for 'aria-dropeffect' values.
*/
public enum DropeffectValue implements AriaAttributeType {
COPY, MOVE, LINK, EXECUTE, POPUP, NONE;
@Override
public String getAriaValue() {
switch (this) {
case COPY:
return "copy";
case MOVE:
return "move";
case LINK:
return "link";
case EXECUTE:
return "execute";
case POPUP:
return "popup";
case NONE:
return "none";
}
return null; // not reachable
}
}