Child: [r15] (diff)

Download this file

Keyword.java    73 lines (66 with data), 1.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (contact@triplecheck.de)
* Created: 2013-08-29T00:00:00Z
* LicenseName: NOASSERTION
* FileName: Keyword.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text>Static definitions for the SPDX format</text>
*/
package spdxlib;
public enum Keyword {
// section #3 - generic document
SPDXVersion,
DataLicense,
DocumentComment,
Creator,
Person,
Organization,
Tool,
Created,
CreatorComment,
// section #4 - package details
PackageName,
PackageVersion,
PackageFileName,
PackageSupplier,
// person details
PackageOriginator,
// person details
PackageDownloadLocation,
PackageVerificationCode,
PackageChecksum,
PackageSourceInfo,
PackageLicenseConcluded,
PackageLicenseInfoFromFiles,
PackageLicenseDeclared,
PackageLicenseComments,
PackageCopyrightText,
PackageSummary,
PackageDescription,
// section #5 - other licensing details
LicenseID,
ExtractedText,
LicenseName,
LicenseCrossReference,
LicenseComment,
// section #6 - information about the files
FileName,
FileType,
FileChecksum,
SHA1,
LicenseConcluded,
LicenseInfoInFile,
LicenseComments,
FileCopyrightText,
ArtifactOfProjectName,
ArtifactOfProjectHomePage,
ArtifactOfProjectURI,
FileComment,
// section #7 - review information
Reviewer,
ReviewDate,
ReviewComment
}