• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2025 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15package OHOS.MiscServices;
16
17enum PasteboardEventStatus : unsigned char {
18    PASTEBOARD_CLEAR = 1,
19    PASTEBOARD_READ = 2,
20    PASTEBOARD_WRITE = 3
21};
22
23enum PasteboardObserverType : unsigned char {
24    OBSERVER_LOCAL = 1,
25    OBSERVER_REMOTE = 2,
26    OBSERVER_ALL = 3,
27    OBSERVER_EVENT = 4
28};
29
30enum Pattern : unsigned int {
31    URL = 0,
32    NUMBER,
33    EMAIL_ADDRESS,
34    COUNT
35};
36
37enum EntityType : unsigned int {
38    ADDRESS = 0,
39    MAX
40};
41
42enum DisposableType : unsigned int {
43    PLAIN_TEXT = 0,
44    MAX
45};
46