index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/merge/OnceAbsoluteMergeStrategy.java | package ai.chat2db.excel.write.merge;
import ai.chat2db.excel.write.handler.SheetWriteHandler;
import org.apache.poi.ss.util.CellRangeAddress;
import ai.chat2db.excel.metadata.property.OnceAbsoluteMergeProperty;
import ai.chat2db.excel.write.metadata.holder.WriteSheetHolder;
import ai.chat2db.excel.write.metadata.hol... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/CollectionRowData.java | package ai.chat2db.excel.write.metadata;
import java.util.Collection;
/**
* A collection row of data.
*
* @author Jiaju Zhuang
*/
public class CollectionRowData implements RowData {
private final Object[] array;
public CollectionRowData(Collection<?> collection) {
this.array = collection.toArray... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/MapRowData.java | package ai.chat2db.excel.write.metadata;
import java.util.Map;
/**
* A map row of data.
*
* @author Jiaju Zhuang
*/
public class MapRowData implements RowData {
private final Map<Integer, ?> map;
public MapRowData(Map<Integer, ?> map) {
this.map = map;
}
@Override
public Object get(... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/RowData.java | package ai.chat2db.excel.write.metadata;
/**
* A row of data.
*
* @author Jiaju Zhuang
*/
public interface RowData {
/**
* Returns the value to which the specified key is mapped,
* or {@code null} if this map contains no mapping for the key.
*
* @param index
* @return data
*/
... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/WriteBasicParameter.java | package ai.chat2db.excel.write.metadata;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import ai.chat2db.excel.metadata.BasicParameter;
import ai.chat2db.excel.write.handler.WriteHandler;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* Write basi... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/WriteSheet.java | package ai.chat2db.excel.write.metadata;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* Write sheet
*
* @author jipengfei
*/
@Getter
@Setter
@EqualsAndHashCode
public class WriteSheet extends WriteBasicParameter {
/**
* Starting from 0
*/
private Integer sheet... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/WriteTable.java | package ai.chat2db.excel.write.metadata;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* table
*
* @author jipengfei
*/
@Getter
@Setter
@EqualsAndHashCode
public class WriteTable extends WriteBasicParameter {
/**
* Starting from 0
*/
private Integer tableNo;
}
|
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/WriteWorkbook.java | package ai.chat2db.excel.write.metadata;
import java.io.File;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.charset.Charset;
import ai.chat2db.excel.support.ExcelTypeEnum;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* Workbook
*
* @author Jiaju Zhua... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/fill/AnalysisCell.java | package ai.chat2db.excel.write.metadata.fill;
import java.util.List;
import ai.chat2db.excel.enums.WriteTemplateAnalysisCellTypeEnum;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* Read the cells of the template while populating the data.
*
* @author Jiaju Zhuang
**/
@Getter
... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/fill/FillConfig.java | package ai.chat2db.excel.write.metadata.fill;
import ai.chat2db.excel.enums.WriteDirectionEnum;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* Fill config
*
* @author Jiaju Zhuang
**/
@Ge... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/fill/FillWrapper.java | package ai.chat2db.excel.write.metadata.fill;
import java.util.Collection;
/**
* Multiple lists are supported when packing
*
* @author Jiaju Zhuang
**/
public class FillWrapper {
/**
* The collection prefix that needs to be filled.
*/
private String name;
/**
* Data that needs to be fil... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/holder/AbstractWriteHolder.java | package ai.chat2db.excel.write.metadata.holder;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import ai.chat2db.excel.constant.OrderConstant;
import ai.chat2db.ex... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/holder/WriteHolder.java | package ai.chat2db.excel.write.metadata.holder;
import java.util.Collection;
import ai.chat2db.excel.metadata.ConfigurationHolder;
import ai.chat2db.excel.write.property.ExcelWriteHeadProperty;
/**
* Get the corresponding Holder
*
* @author Jiaju Zhuang
**/
public interface WriteHolder extends ConfigurationHolde... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/holder/WriteSheetHolder.java | package ai.chat2db.excel.write.metadata.holder;
import java.util.HashMap;
import java.util.Map;
import ai.chat2db.excel.enums.HolderEnum;
import ai.chat2db.excel.enums.WriteLastRowTypeEnum;
import ai.chat2db.excel.util.StringUtils;
import ai.chat2db.excel.write.metadata.WriteSheet;
import lombok.EqualsAndHashCode;
i... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/holder/WriteTableHolder.java | package ai.chat2db.excel.write.metadata.holder;
import ai.chat2db.excel.enums.HolderEnum;
import ai.chat2db.excel.write.metadata.WriteTable;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
/**
* sheet holder
*
* @author Jiaju Zhuang
*/
@Getter
@Setter
@EqualsAndHashCode
public class ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/holder/WriteWorkbookHolder.java | package ai.chat2db.excel.write.metadata.holder;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.charset.Charset;
import java.util.HashMap... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/style/WriteCellStyle.java | package ai.chat2db.excel.write.metadata.style;
import ai.chat2db.excel.constant.BuiltinFormats;
import ai.chat2db.excel.metadata.data.DataFormatData;
import ai.chat2db.excel.metadata.property.FontProperty;
import ai.chat2db.excel.metadata.property.StyleProperty;
import ai.chat2db.excel.util.StringUtils;
import lombok... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/metadata/style/WriteFont.java | package ai.chat2db.excel.write.metadata.style;
import ai.chat2db.excel.util.StringUtils;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import org.apache.poi.common.usermodel.fonts.FontCharset;
import org.apache.poi.hssf.usermodel.HSSFPalette;
import org.apache.poi.ss.usermodel.Font;
imp... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/property/ExcelWriteHeadProperty.java | package ai.chat2db.excel.write.property;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import ai.chat2db.excel.enums.HeadKindEnum;
import ai.chat2db.excel.metadata.CellRange;
import ai.chat2db.excel.metadata.Con... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/AbstractCellStyleStrategy.java | package ai.chat2db.excel.write.style;
import ai.chat2db.excel.write.handler.CellWriteHandler;
import ai.chat2db.excel.write.handler.context.CellWriteHandlerContext;
import ai.chat2db.excel.constant.OrderConstant;
import ai.chat2db.excel.metadata.Head;
import org.apache.poi.ss.usermodel.Cell;
/**
* Cell style strate... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/AbstractVerticalCellStyleStrategy.java | package ai.chat2db.excel.write.style;
import ai.chat2db.excel.write.handler.context.CellWriteHandlerContext;
import ai.chat2db.excel.metadata.Head;
import ai.chat2db.excel.metadata.data.WriteCellData;
import ai.chat2db.excel.write.metadata.style.WriteCellStyle;
/**
* Use the same style for the column
*
* @author J... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/DefaultStyle.java | package ai.chat2db.excel.write.style;
import ai.chat2db.excel.constant.OrderConstant;
import ai.chat2db.excel.write.metadata.style.WriteCellStyle;
import ai.chat2db.excel.write.metadata.style.WriteFont;
import org.apache.poi.ss.usermodel.BorderStyle;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apac... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/HorizontalCellStyleStrategy.java | package ai.chat2db.excel.write.style;
import java.util.List;
import ai.chat2db.excel.write.handler.context.CellWriteHandlerContext;
import ai.chat2db.excel.metadata.data.WriteCellData;
import ai.chat2db.excel.util.ListUtils;
import ai.chat2db.excel.write.metadata.style.WriteCellStyle;
import lombok.EqualsAndHashCode... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/column/AbstractColumnWidthStyleStrategy.java | package ai.chat2db.excel.write.style.column;
import java.util.List;
import ai.chat2db.excel.write.handler.CellWriteHandler;
import ai.chat2db.excel.write.handler.context.CellWriteHandlerContext;
import ai.chat2db.excel.metadata.Head;
import ai.chat2db.excel.metadata.data.WriteCellData;
import ai.chat2db.excel.write.m... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/column/AbstractHeadColumnWidthStyleStrategy.java | package ai.chat2db.excel.write.style.column;
import java.util.List;
import ai.chat2db.excel.metadata.Head;
import ai.chat2db.excel.metadata.data.WriteCellData;
import ai.chat2db.excel.write.metadata.holder.WriteSheetHolder;
import org.apache.poi.ss.usermodel.Cell;
/**
* Returns the column width according to each c... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/column/LongestMatchColumnWidthStyleStrategy.java | package ai.chat2db.excel.write.style.column;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import ai.chat2db.excel.enums.CellDataTypeEnum;
import ai.chat2db.excel.metadata.Head;
import ai.chat2db.excel.metadata.data.WriteCellData;
import ai.chat2db.excel.util.MapUtils;
import ai.chat2db.excel... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/column/SimpleColumnWidthStyleStrategy.java | package ai.chat2db.excel.write.style.column;
import ai.chat2db.excel.metadata.Head;
/**
* All the columns are the same width
*
* @author Jiaju Zhuang
*/
public class SimpleColumnWidthStyleStrategy extends AbstractHeadColumnWidthStyleStrategy {
private final Integer columnWidth;
/**
*
* @param c... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/row/AbstractRowHeightStyleStrategy.java | package ai.chat2db.excel.write.style.row;
import ai.chat2db.excel.write.handler.RowWriteHandler;
import ai.chat2db.excel.write.handler.context.RowWriteHandlerContext;
import org.apache.poi.ss.usermodel.Row;
/**
* Set the row height strategy
*
* @author Jiaju Zhuang
*/
public abstract class AbstractRowHeightStyle... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style | java-sources/ai/chat2db/excel/easyexcel-plus-core/0.0.1/ai/chat2db/excel/write/style/row/SimpleRowHeightStyleStrategy.java | package ai.chat2db.excel.write.style.row;
import org.apache.poi.ss.usermodel.Row;
/**
* Set the head column high and content column high
*
* @author Jiaju Zhuang
*/
public class SimpleRowHeightStyleStrategy extends AbstractRowHeightStyleStrategy {
private final Short headRowHeight;
private final Short con... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/Empty.java | package ai.chat2db.excel.support;
/**
* empty
*
* @author Jiaju Zhuang
*/
public class Empty {
}
|
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/AnnotationVisitor.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/AnnotationWriter.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Attribute.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ByteVector.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ClassReader.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ClassTooLargeException.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ClassVisitor.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ClassWriter.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ConstantDynamic.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Constants.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Context.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/CurrentFrame.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Edge.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/FieldVisitor.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/FieldWriter.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Frame.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Handle.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Handler.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Label.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/MethodTooLargeException.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/MethodVisitor.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/MethodWriter.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ModuleVisitor.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/ModuleWriter.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Opcodes.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/RecordComponentVisitor.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/RecordComponentWriter.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/SpringAsmInfo.java | /*
* Copyright 2002-2021 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Symbol.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/SymbolTable.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/Type.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/TypePath.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/TypeReference.java | // ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/asm/package-info.java | /**
* Spring's repackaging of
* <a href="https://gitlab.ow2.org/asm/asm">ASM 9.x</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on ASM at the application level or from third-party
* libraries and frameworks.
*
* ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/SpringCglibInfo.java | /*
* Copyright 2002-2014 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/package-info.java | /**
* Spring's repackaging of
* <a href="https://github.com/cglib/cglib">CGLIB 3.3</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on CGLIB at the application level or from third-party
* libraries and frameworks.
*... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BeanCopier.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BeanGenerator.java | /*
* Copyright 2003 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BeanMap.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BeanMapEmitter.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BulkBean.java | /*
* Copyright 2003 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BulkBeanEmitter.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/BulkBeanException.java | /*
* Copyright 2003 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/FixedKeySet.java | /*
* Copyright 2003 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/ImmutableBean.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/beans/package-info.java | /**
* Spring's repackaging of the
* <a href="https://github.com/cglib/cglib">CGLIB</a> beans package
* (for internal use only).
*
* <p>As this repackaging happens at the class file level, sources
* and javadocs are not available here... except for a few files
* that have been patched for Spring's purposes on JDK... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/AbstractClassGenerator.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/AsmApi.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/ClassLoaderAwareGeneratorStrategy.java | /*
* Copyright 2002-2019 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/KeyFactory.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/ReflectUtils.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/SpringNamingPolicy.java | /*
* Copyright 2002-2014 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/core/package-info.java | /**
* Spring's repackaging of the
* <a href="https://github.com/cglib/cglib">CGLIB</a> core package
* (for internal use only).
*
* <p>As this repackaging happens at the class file level, sources
* and javadocs are not available here... except for a few files
* that have been patched for Spring's purposes on JDK ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/proxy/Enhancer.java | /*
* Copyright 2002,2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless require... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/proxy/MethodProxy.java | /*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... |
0 | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib | java-sources/ai/chat2db/excel/easyexcel-plus-support/0.0.1/ai/chat2db/excel/support/cglib/proxy/package-info.java | /**
* Spring's repackaging of the
* <a href="https://github.com/cglib/cglib">CGLIB</a> proxy package
* (for internal use only).
*
* <p>As this repackaging happens at the class file level, sources
* and javadocs are not available here... except for a few files
* that have been patched for Spring's purposes on JDK... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin/1.2.0/ai/cheq/sst/android | java-sources/ai/cheq/sst/android/cheq-sst-kotlin/1.2.0/ai/cheq/sst/android/core/BuildConfig.java | /**
* Automatically generated file. DO NOT MODIFY
*/
package ai.cheq.sst.android.core;
public final class BuildConfig {
public static final boolean DEBUG = false;
public static final String LIBRARY_PACKAGE_NAME = "ai.cheq.sst.android.core";
public static final String BUILD_TYPE = "release";
// Field from def... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-advertising/1.2.0/ai/cheq/sst/android/models | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-advertising/1.2.0/ai/cheq/sst/android/models/advertising/BuildConfig.java | /**
* Automatically generated file. DO NOT MODIFY
*/
package ai.cheq.sst.android.models.advertising;
public final class BuildConfig {
public static final boolean DEBUG = false;
public static final String LIBRARY_PACKAGE_NAME = "ai.cheq.sst.android.models.advertising";
public static final String BUILD_TYPE = "r... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/BuildConfig.java | /**
* Automatically generated file. DO NOT MODIFY
*/
package ai.cheq.sst.android;
public final class BuildConfig {
public static final boolean DEBUG = false;
public static final String LIBRARY_PACKAGE_NAME = "ai.cheq.sst.android";
public static final String BUILD_TYPE = "release";
// Field from default confi... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/advertising/Advertising.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: advertising.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.advertising;
/**
* Protobuf type {@code Advertising}
*/
public final class Advertising extends
com.google.protobuf.Gen... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/advertising/AdvertisingOrBuilder.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: advertising.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.advertising;
public interface AdvertisingOrBuilder extends
// @@protoc_insertion_point(interface_extends:Advertising)
... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/advertising/AdvertisingOuterClass.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: advertising.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.advertising;
public final class AdvertisingOuterClass {
private AdvertisingOuterClass() {}
public static void registerAll... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/dataLayer/DataLayer.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: dataLayer.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.dataLayer;
/**
* Protobuf type {@code DataLayer}
*/
public final class DataLayer extends
com.google.protobuf.GeneratedMe... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/dataLayer/DataLayerOrBuilder.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: dataLayer.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.dataLayer;
public interface DataLayerOrBuilder extends
// @@protoc_insertion_point(interface_extends:DataLayer)
com.goo... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/dataLayer/DataLayerOuterClass.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: dataLayer.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.dataLayer;
public final class DataLayerOuterClass {
private DataLayerOuterClass() {}
public static void registerAllExtensio... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/settings/Settings.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: settings.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.settings;
/**
* Protobuf type {@code Settings}
*/
public final class Settings extends
com.google.protobuf.GeneratedMessag... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/settings/SettingsOrBuilder.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: settings.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.settings;
public interface SettingsOrBuilder extends
// @@protoc_insertion_point(interface_extends:Settings)
com.google.... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/settings/SettingsOuterClass.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: settings.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.settings;
public final class SettingsOuterClass {
private SettingsOuterClass() {}
public static void registerAllExtensions(
... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/storage/Storage.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: storage.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.storage;
/**
* Protobuf type {@code Storage}
*/
public final class Storage extends
com.google.protobuf.GeneratedMessageLit... |
0 | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf | java-sources/ai/cheq/sst/android/cheq-sst-kotlin-protobuf/1.2.0/ai/cheq/sst/android/protobuf/storage/StorageOrBuilder.java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: storage.proto
// Protobuf Java Version: 4.28.3
package ai.cheq.sst.android.protobuf.storage;
public interface StorageOrBuilder extends
// @@protoc_insertion_point(interface_extends:Storage)
com.google.prot... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.