blob: 9febbdf5ef5a4c99cb3eeacb1810739eb2b4a5d1 [file] [log] [blame]
/*
* Copyright (C) 2007 The Android Open Source Project
*
* 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.android.dx.cf.cst;
/**
* Tags for constant pool constants.
*/
public interface ConstantTags {
/** tag for a {@code CONSTANT_Utf8_info} */
int CONSTANT_Utf8 = 1;
/** tag for a {@code CONSTANT_Integer_info} */
int CONSTANT_Integer = 3;
/** tag for a {@code CONSTANT_Float_info} */
int CONSTANT_Float = 4;
/** tag for a {@code CONSTANT_Long_info} */
int CONSTANT_Long = 5;
/** tag for a {@code CONSTANT_Double_info} */
int CONSTANT_Double = 6;
/** tag for a {@code CONSTANT_Class_info} */
int CONSTANT_Class = 7;
/** tag for a {@code CONSTANT_String_info} */
int CONSTANT_String = 8;
/** tag for a {@code CONSTANT_Fieldref_info} */
int CONSTANT_Fieldref = 9;
/** tag for a {@code CONSTANT_Methodref_info} */
int CONSTANT_Methodref = 10;
/** tag for a {@code CONSTANT_InterfaceMethodref_info} */
int CONSTANT_InterfaceMethodref = 11;
/** tag for a {@code CONSTANT_NameAndType_info} */
int CONSTANT_NameAndType = 12;
}